<!-- Don't forget to update status.xml too! -->
<release version="3.1-beta1" date="2008-??-??">
+ <action dev="POI-DEVELOPERS" type="fix">44471 - Crystal Reports generates files with short StyleRecords, which isn't allowed in the spec. Work around this</action>
<action dev="POI-DEVELOPERS" type="add">44450 - Support for Lookup, HLookup and VLookup functions</action>
<action dev="POI-DEVELOPERS" type="fix">44449 - Avoid getting confused when two sheets have shared formulas for the same areas, and when the shared formula is set incorrectly</action>
<action dev="POI-DEVELOPERS" type="fix">44366 - InputStreams passed to POIFSFileSystem are now automatically closed. A warning is generated for people who might've relied on them not being closed before, and a wrapper to restore the old behaviour is supplied</action>
<!-- Don't forget to update changes.xml too! -->
<changes>
<release version="3.1-beta1" date="2008-??-??">
+ <action dev="POI-DEVELOPERS" type="fix">44471 - Crystal Reports generates files with short StyleRecords, which isn't allowed in the spec. Work around this</action>
<action dev="POI-DEVELOPERS" type="add">44450 - Support for Lookup, HLookup and VLookup functions</action>
<action dev="POI-DEVELOPERS" type="fix">44449 - Avoid getting confused when two sheets have shared formulas for the same areas, and when the shared formula is set incorrectly</action>
<action dev="POI-DEVELOPERS" type="fix">44366 - InputStreams passed to POIFSFileSystem are now automatically closed. A warning is generated for people who might've relied on them not being closed before, and a wrapper to restore the old behaviour is supplied</action>
else if (getType() == STYLE_USER_DEFINED)
{
field_2_name_length = in.readShort();
- field_3_string_options = in.readByte();
- byte[] string = in.readRemainder();
- if (fHighByte.isSet(field_3_string_options)) {
- field_4_name= StringUtil.getFromUnicodeBE(string, 0, field_2_name_length);
- }else {
- field_4_name=StringUtil.getFromCompressedUnicode(string, 0, field_2_name_length);
+ // Some files from Crystal Reports lack
+ // the remaining fields, which is naughty
+ if(in.remaining() > 0) {
+ field_3_string_options = in.readByte();
+
+ byte[] string = in.readRemainder();
+ if (fHighByte.isSet(field_3_string_options)) {
+ field_4_name= StringUtil.getFromUnicodeBE(string, 0, field_2_name_length);
+ } else {
+ field_4_name=StringUtil.getFromCompressedUnicode(string, 0, field_2_name_length);
+ }
}
}
}
/**
- * Date: Tue, 19 Feb 2008 05:03:47 -0800 (PST)
- * From: Setya <jsetya@gmail.com>
- * Subject: Exception when parsing excel file
+ * Crystal reports generates files with short
+ * StyleRecords, which is against the spec
*/
- public void BROKENtest20080219() throws Exception {
+ public void test44471() throws Exception {
FileInputStream in = new FileInputStream(new File(cwd, "OddStyleRecord.xls"));
- // Blows up with an ArrayIndexOutOfBounds
+ // Used to blow up with an ArrayIndexOutOfBounds
// when creating a StyleRecord
- // However, our code matches the latest Microsoft
- // docs, so no idea what's wrong
HSSFWorkbook wb = new HSSFWorkbook(in);
in.close();