vba code no longer corrupted - http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10213
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352845 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fb52b027c9
commit
c530fb5920
@ -465,8 +465,8 @@ public int getShort (byte[] rec)
|
|||||||
<td>-2</td>
|
<td>-2</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>UK11</td>
|
<td>SBAT_Block_Count</td>
|
||||||
<td>Unknown Constant</td>
|
<td>Number of big blocks holding the SBAT</td>
|
||||||
<td>0x0040</td>
|
<td>0x0040</td>
|
||||||
<td>Integer</td>
|
<td>Integer</td>
|
||||||
<td>1</td>
|
<td>1</td>
|
||||||
|
@ -64,6 +64,10 @@ import org.apache.poi.hssf.model.Sheet;
|
|||||||
import org.apache.poi.hssf.model.Workbook;
|
import org.apache.poi.hssf.model.Workbook;
|
||||||
import org.apache.poi.hssf.record.*;
|
import org.apache.poi.hssf.record.*;
|
||||||
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
|
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
|
||||||
|
import org.apache.poi.poifs.filesystem.Entry;
|
||||||
|
import org.apache.poi.poifs.filesystem.DirectoryEntry;
|
||||||
|
import org.apache.poi.poifs.filesystem.DocumentEntry;
|
||||||
|
import org.apache.poi.poifs.filesystem.DocumentInputStream;
|
||||||
import org.apache.poi.util.POILogger;
|
import org.apache.poi.util.POILogger;
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
@ -72,6 +76,7 @@ import java.io.InputStream;
|
|||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Iterator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* High level representation of a workbook. This is the first object most users
|
* High level representation of a workbook. This is the first object most users
|
||||||
@ -118,6 +123,18 @@ public class HSSFWorkbook
|
|||||||
|
|
||||||
private ArrayList names;
|
private ArrayList names;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* holds whether or not to preserve other nodes in the POIFS. Used
|
||||||
|
* for macros and embedded objects.
|
||||||
|
*/
|
||||||
|
private boolean preserveNodes;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* if you do preserve the nodes, you'll need to hold the whole POIFS in
|
||||||
|
* memory.
|
||||||
|
*/
|
||||||
|
private POIFSFileSystem poifs;
|
||||||
|
|
||||||
private static POILogger log = POILogFactory.getLogger(HSSFWorkbook.class);
|
private static POILogger log = POILogFactory.getLogger(HSSFWorkbook.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -132,18 +149,31 @@ public class HSSFWorkbook
|
|||||||
names = new ArrayList(INITIAL_CAPACITY);
|
names = new ArrayList(INITIAL_CAPACITY);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public HSSFWorkbook(POIFSFileSystem fs) throws IOException {
|
||||||
|
this(fs,true);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* given a POI POIFSFileSystem object, read in its Workbook and populate the high and
|
* given a POI POIFSFileSystem object, read in its Workbook and populate the high and
|
||||||
* low level models. If you're reading in a workbook...start here.
|
* low level models. If you're reading in a workbook...start here.
|
||||||
*
|
*
|
||||||
* @param fs the POI filesystem that contains the Workbook stream.
|
* @param fs the POI filesystem that contains the Workbook stream.
|
||||||
|
* @param preserveNodes whether to preseve other nodes, such as
|
||||||
|
* macros. This takes more memory, so only say yes if you
|
||||||
|
* need to.
|
||||||
* @see org.apache.poi.poifs.filesystem.POIFSFileSystem
|
* @see org.apache.poi.poifs.filesystem.POIFSFileSystem
|
||||||
* @exception IOException if the stream cannot be read
|
* @exception IOException if the stream cannot be read
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public HSSFWorkbook(POIFSFileSystem fs)
|
public HSSFWorkbook(POIFSFileSystem fs, boolean preserveNodes)
|
||||||
throws IOException
|
throws IOException
|
||||||
{
|
{
|
||||||
|
this.preserveNodes = preserveNodes;
|
||||||
|
|
||||||
|
if (preserveNodes) {
|
||||||
|
this.poifs = fs;
|
||||||
|
}
|
||||||
|
|
||||||
sheets = new ArrayList(INITIAL_CAPACITY);
|
sheets = new ArrayList(INITIAL_CAPACITY);
|
||||||
names = new ArrayList(INITIAL_CAPACITY);
|
names = new ArrayList(INITIAL_CAPACITY);
|
||||||
|
|
||||||
@ -175,20 +205,27 @@ public class HSSFWorkbook
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public HSSFWorkbook(InputStream s) throws IOException {
|
||||||
|
this(s,true);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Companion to HSSFWorkbook(POIFSFileSystem), this constructs the POI filesystem around your
|
* Companion to HSSFWorkbook(POIFSFileSystem), this constructs the POI filesystem around your
|
||||||
* inputstream.
|
* inputstream.
|
||||||
*
|
*
|
||||||
* @param s the POI filesystem that contains the Workbook stream.
|
* @param s the POI filesystem that contains the Workbook stream.
|
||||||
|
* @param preserveNodes whether to preseve other nodes, such as
|
||||||
|
* macros. This takes more memory, so only say yes if you
|
||||||
|
* need to.
|
||||||
* @see org.apache.poi.poifs.filesystem.POIFSFileSystem
|
* @see org.apache.poi.poifs.filesystem.POIFSFileSystem
|
||||||
* @see #HSSFWorkbook(POIFSFileSystem)
|
* @see #HSSFWorkbook(POIFSFileSystem)
|
||||||
* @exception IOException if the stream cannot be read
|
* @exception IOException if the stream cannot be read
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public HSSFWorkbook(InputStream s)
|
public HSSFWorkbook(InputStream s, boolean preserveNodes)
|
||||||
throws IOException
|
throws IOException
|
||||||
{
|
{
|
||||||
this((new POIFSFileSystem(s)));
|
this(new POIFSFileSystem(s), preserveNodes);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -517,7 +554,14 @@ public class HSSFWorkbook
|
|||||||
POIFSFileSystem fs = new POIFSFileSystem();
|
POIFSFileSystem fs = new POIFSFileSystem();
|
||||||
|
|
||||||
fs.createDocument(new ByteArrayInputStream(bytes), "Workbook");
|
fs.createDocument(new ByteArrayInputStream(bytes), "Workbook");
|
||||||
|
|
||||||
|
if (preserveNodes) {
|
||||||
|
List excepts = new ArrayList(1);
|
||||||
|
excepts.add("Workbook");
|
||||||
|
copyNodes(this.poifs,fs,excepts);
|
||||||
|
}
|
||||||
fs.writeFilesystem(stream);
|
fs.writeFilesystem(stream);
|
||||||
|
//poifs.writeFilesystem(stream);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -548,12 +592,12 @@ public class HSSFWorkbook
|
|||||||
// sheetbytes.add((( HSSFSheet ) sheets.get(k)).getSheet().getSize());
|
// sheetbytes.add((( HSSFSheet ) sheets.get(k)).getSheet().getSize());
|
||||||
totalsize += ((HSSFSheet) sheets.get(k)).getSheet().getSize();
|
totalsize += ((HSSFSheet) sheets.get(k)).getSheet().getSize();
|
||||||
}
|
}
|
||||||
if (totalsize < 4096)
|
/* if (totalsize < 4096)
|
||||||
{
|
{
|
||||||
totalsize = 4096;
|
totalsize = 4096;
|
||||||
}
|
}*/
|
||||||
byte[] data = new byte[totalsize];
|
byte[] retval = new byte[totalsize];
|
||||||
int pos = workbook.serialize(0, data);
|
int pos = workbook.serialize(0, retval);
|
||||||
|
|
||||||
// System.arraycopy(wb, 0, retval, 0, wb.length);
|
// System.arraycopy(wb, 0, retval, 0, wb.length);
|
||||||
for (int k = 0; k < sheets.size(); k++)
|
for (int k = 0; k < sheets.size(); k++)
|
||||||
@ -562,13 +606,13 @@ public class HSSFWorkbook
|
|||||||
// byte[] sb = (byte[])sheetbytes.get(k);
|
// byte[] sb = (byte[])sheetbytes.get(k);
|
||||||
// System.arraycopy(sb, 0, retval, pos, sb.length);
|
// System.arraycopy(sb, 0, retval, pos, sb.length);
|
||||||
pos += ((HSSFSheet) sheets.get(k)).getSheet().serialize(pos,
|
pos += ((HSSFSheet) sheets.get(k)).getSheet().serialize(pos,
|
||||||
data); // sb.length;
|
retval); // sb.length;
|
||||||
}
|
}
|
||||||
for (int k = pos; k < totalsize; k++)
|
/* for (int k = pos; k < totalsize; k++)
|
||||||
{
|
{
|
||||||
data[k] = 0;
|
retval[k] = 0;
|
||||||
}
|
}*/
|
||||||
return data;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int addSSTString(String string)
|
public int addSSTString(String string)
|
||||||
@ -678,4 +722,56 @@ public class HSSFWorkbook
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copies nodes from one POIFS to the other minus the excepts
|
||||||
|
* @param source is the source POIFS to copy from
|
||||||
|
* @param target is the target POIFS to copy to
|
||||||
|
* @param excepts is a list of Strings specifying what nodes NOT to copy
|
||||||
|
*/
|
||||||
|
private void copyNodes(POIFSFileSystem source, POIFSFileSystem target,
|
||||||
|
List excepts) throws IOException {
|
||||||
|
//System.err.println("CopyNodes called");
|
||||||
|
|
||||||
|
DirectoryEntry root = source.getRoot();
|
||||||
|
DirectoryEntry newRoot = target.getRoot();
|
||||||
|
|
||||||
|
Iterator entries = root.getEntries();
|
||||||
|
|
||||||
|
while (entries.hasNext()) {
|
||||||
|
Entry entry = (Entry)entries.next();
|
||||||
|
if (!isInList(entry.getName(), excepts)) {
|
||||||
|
copyNodeRecursively(entry,newRoot);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isInList(String entry, List list) {
|
||||||
|
for (int k = 0; k < list.size(); k++) {
|
||||||
|
if (((String)list.get(k)).equals(entry)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void copyNodeRecursively(Entry entry, DirectoryEntry target)
|
||||||
|
throws IOException {
|
||||||
|
//System.err.println("copyNodeRecursively called with "+entry.getName()+
|
||||||
|
// ","+target.getName());
|
||||||
|
DirectoryEntry newTarget = null;
|
||||||
|
if (entry.isDirectoryEntry()) {
|
||||||
|
newTarget = target.createDirectory(entry.getName());
|
||||||
|
Iterator entries = ((DirectoryEntry)entry).getEntries();
|
||||||
|
|
||||||
|
while (entries.hasNext()) {
|
||||||
|
copyNodeRecursively((Entry)entries.next(),newTarget);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
DocumentEntry dentry = (DocumentEntry)entry;
|
||||||
|
DocumentInputStream dstream = new DocumentInputStream(dentry);
|
||||||
|
target.createDocument(dentry.getName(),dstream);
|
||||||
|
dstream.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -269,6 +269,9 @@ public class POIFSFileSystem
|
|||||||
// set the small block allocation table start block
|
// set the small block allocation table start block
|
||||||
header_block_writer.setSBATStart(sbtw.getSBAT().getStartBlock());
|
header_block_writer.setSBATStart(sbtw.getSBAT().getStartBlock());
|
||||||
|
|
||||||
|
// set the small block allocation table block count
|
||||||
|
header_block_writer.setSBATBlockCount(sbtw.getSBATBlockCount());
|
||||||
|
|
||||||
// the header is now properly initialized. Make a list of
|
// the header is now properly initialized. Make a list of
|
||||||
// writers (the header block, followed by the documents, the
|
// writers (the header block, followed by the documents, the
|
||||||
// property table, the small block store, the small block
|
// property table, the small block store, the small block
|
||||||
|
@ -81,6 +81,7 @@ public interface HeaderBlockConstants
|
|||||||
public static final int _bat_count_offset = 0x2C;
|
public static final int _bat_count_offset = 0x2C;
|
||||||
public static final int _property_start_offset = 0x30;
|
public static final int _property_start_offset = 0x30;
|
||||||
public static final int _sbat_start_offset = 0x3C;
|
public static final int _sbat_start_offset = 0x3C;
|
||||||
|
public static final int _sbat_block_count_offset = 0x40;
|
||||||
public static final int _xbat_start_offset = 0x44;
|
public static final int _xbat_start_offset = 0x44;
|
||||||
public static final int _xbat_count_offset = 0x48;
|
public static final int _xbat_count_offset = 0x48;
|
||||||
} // end public interface HeaderBlockConstants
|
} // end public interface HeaderBlockConstants
|
||||||
|
@ -88,6 +88,9 @@ public class HeaderBlockWriter
|
|||||||
// block allocation table's first big block)
|
// block allocation table's first big block)
|
||||||
private IntegerField _sbat_start;
|
private IntegerField _sbat_start;
|
||||||
|
|
||||||
|
// number of big blocks holding the small block allocation table
|
||||||
|
private IntegerField _sbat_block_count;
|
||||||
|
|
||||||
// big block index for extension to the big block allocation table
|
// big block index for extension to the big block allocation table
|
||||||
private IntegerField _xbat_start;
|
private IntegerField _xbat_start;
|
||||||
private IntegerField _xbat_count;
|
private IntegerField _xbat_count;
|
||||||
@ -121,7 +124,8 @@ public class HeaderBlockWriter
|
|||||||
new IntegerField(0x38, 0x1000, _data);
|
new IntegerField(0x38, 0x1000, _data);
|
||||||
_sbat_start = new IntegerField(_sbat_start_offset,
|
_sbat_start = new IntegerField(_sbat_start_offset,
|
||||||
POIFSConstants.END_OF_CHAIN, _data);
|
POIFSConstants.END_OF_CHAIN, _data);
|
||||||
new IntegerField(0x40, 1, _data);
|
_sbat_block_count = new IntegerField(_sbat_block_count_offset, 0,
|
||||||
|
_data);
|
||||||
_xbat_start = new IntegerField(_xbat_start_offset,
|
_xbat_start = new IntegerField(_xbat_start_offset,
|
||||||
POIFSConstants.END_OF_CHAIN, _data);
|
POIFSConstants.END_OF_CHAIN, _data);
|
||||||
_xbat_count = new IntegerField(_xbat_count_offset, 0, _data);
|
_xbat_count = new IntegerField(_xbat_count_offset, 0, _data);
|
||||||
@ -200,6 +204,17 @@ public class HeaderBlockWriter
|
|||||||
_sbat_start.set(startBlock, _data);
|
_sbat_start.set(startBlock, _data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set count of SBAT blocks
|
||||||
|
*
|
||||||
|
* @param count the number of SBAT blocks
|
||||||
|
*/
|
||||||
|
|
||||||
|
public void setSBATBlockCount(final int count)
|
||||||
|
{
|
||||||
|
_sbat_block_count.set(count, _data);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For a given number of BAT blocks, calculate how many XBAT
|
* For a given number of BAT blocks, calculate how many XBAT
|
||||||
* blocks will be needed
|
* blocks will be needed
|
||||||
|
@ -112,6 +112,17 @@ public class SmallBlockTableWriter
|
|||||||
_big_block_count = SmallDocumentBlock.fill(_small_blocks);
|
_big_block_count = SmallDocumentBlock.fill(_small_blocks);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the number of SBAT blocks
|
||||||
|
*
|
||||||
|
* @return number of SBAT big blocks
|
||||||
|
*/
|
||||||
|
|
||||||
|
public int getSBATBlockCount()
|
||||||
|
{
|
||||||
|
return (_big_block_count + 15) / 16;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the SBAT
|
* Get the SBAT
|
||||||
*
|
*
|
||||||
|
@ -117,7 +117,7 @@ public class TestHeaderBlockWriter
|
|||||||
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0x00, ( byte ) 0x10, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x10, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
||||||
( byte ) 0x01, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
||||||
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
||||||
@ -281,7 +281,7 @@ public class TestHeaderBlockWriter
|
|||||||
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0x00, ( byte ) 0x10, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x10, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0x67, ( byte ) 0x45, ( byte ) 0x23, ( byte ) 0x01,
|
( byte ) 0x67, ( byte ) 0x45, ( byte ) 0x23, ( byte ) 0x01,
|
||||||
( byte ) 0x01, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
||||||
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
||||||
@ -436,7 +436,7 @@ public class TestHeaderBlockWriter
|
|||||||
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0x00, ( byte ) 0x10, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x10, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
||||||
( byte ) 0x01, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
||||||
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
||||||
@ -597,7 +597,7 @@ public class TestHeaderBlockWriter
|
|||||||
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0x00, ( byte ) 0x10, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x10, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
||||||
( byte ) 0x01, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
||||||
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0x67, ( byte ) 0x45, ( byte ) 0x23, ( byte ) 0x01,
|
( byte ) 0x67, ( byte ) 0x45, ( byte ) 0x23, ( byte ) 0x01,
|
||||||
@ -744,7 +744,7 @@ public class TestHeaderBlockWriter
|
|||||||
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0x00, ( byte ) 0x10, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x10, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
||||||
( byte ) 0x01, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
||||||
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0x67, ( byte ) 0x45, ( byte ) 0x23, ( byte ) 0x01,
|
( byte ) 0x67, ( byte ) 0x45, ( byte ) 0x23, ( byte ) 0x01,
|
||||||
@ -891,7 +891,7 @@ public class TestHeaderBlockWriter
|
|||||||
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0x00, ( byte ) 0x10, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x10, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
( byte ) 0xFE, ( byte ) 0xFF, ( byte ) 0xFF, ( byte ) 0xFF,
|
||||||
( byte ) 0x01, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0x67, ( byte ) 0x46, ( byte ) 0x23, ( byte ) 0x01,
|
( byte ) 0x67, ( byte ) 0x46, ( byte ) 0x23, ( byte ) 0x01,
|
||||||
( byte ) 0x02, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
( byte ) 0x02, ( byte ) 0x00, ( byte ) 0x00, ( byte ) 0x00,
|
||||||
( byte ) 0x67, ( byte ) 0x45, ( byte ) 0x23, ( byte ) 0x01,
|
( byte ) 0x67, ( byte ) 0x45, ( byte ) 0x23, ( byte ) 0x01,
|
||||||
|
Loading…
Reference in New Issue
Block a user