Fixed some bad string length handling.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352125 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Glen Stampoultzis 2002-03-01 13:27:10 +00:00
parent 726f0c782b
commit 859cfc9495
4 changed files with 4 additions and 4 deletions

View File

@ -126,7 +126,7 @@ public class BoundSheetRecord
field_3_sheetname_length = data[ 6 + offset ]; field_3_sheetname_length = data[ 6 + offset ];
field_4_compressed_unicode_flag = data[ 7 + offset ]; field_4_compressed_unicode_flag = data[ 7 + offset ];
field_5_sheetname = new String(data, 8 + offset, field_5_sheetname = new String(data, 8 + offset,
( int ) field_3_sheetname_length); LittleEndian.ubyteToInt( field_3_sheetname_length));
} }
/** /**

View File

@ -165,7 +165,7 @@ public class FontRecord
if (data[ 15 ] == 0) if (data[ 15 ] == 0)
{ // is compressed unicode { // is compressed unicode
field_11_font_name = new String(data, 16, field_11_font_name = new String(data, 16,
field_10_font_name_len); LittleEndian.ubyteToInt(field_10_font_name_len));
} }
else else
{ // is not compressed unicode { // is not compressed unicode

View File

@ -121,7 +121,7 @@ public class FormatRecord
field_2_formatstring_len = data[ 2 + offset ]; field_2_formatstring_len = data[ 2 + offset ];
field_3_zero = LittleEndian.getShort(data, 3 + offset); field_3_zero = LittleEndian.getShort(data, 3 + offset);
field_4_formatstring = new String(data, 5 + offset, field_4_formatstring = new String(data, 5 + offset,
field_2_formatstring_len); LittleEndian.ubyteToInt(field_2_formatstring_len));
} }
/** /**

View File

@ -135,7 +135,7 @@ public class StyleRecord
{ {
field_2_name_length = data[ 2 + offset ]; field_2_name_length = data[ 2 + offset ];
field_3_name = new String(data, 3 + offset, field_3_name = new String(data, 3 + offset,
field_2_name_length); LittleEndian.ubyteToInt(field_2_name_length));
} }
// todo sanity check exception to make sure we're one or the other // todo sanity check exception to make sure we're one or the other