<changes>
<release version="3.7-beta3" date="2010-??-??">
+ <action dev="poi-developers" type="fix">48325 - If a HSSF header or footer lacks left/right/centre information, assume it is a centre one</action>
<action dev="poi-developers" type="fix">49966 - Correctly remove calcChain entries for XSSF cells that stop holding formulas</action>
<action dev="poi-developers" type="add">47582 - XSSFCellStyle support for creating a style in one workbook based on a style from a different one</action>
<action dev="poi-developers" type="fix">49931 - Avoid concurrency problems when re-ordering multiple HSSF header records for a PageSettingsBlock</action>
String _center = "";
String _right = "";
+outer:
while (text.length() > 1) {
+ if (text.charAt(0) != '&') {
+ // Mimics the behaviour of Excel, which would put it in the center.
+ _center = text;
+ break;
+ }
int pos = text.length();
switch (text.charAt(1)) {
case 'L':
text = text.substring(pos);
break;
default:
- throw new IllegalStateException("bad text '" + getRawText() + "'.");
+ // Mimics the behaviour of Excel, which would put it in the center.
+ _center = text;
+ break outer;
}
}
return new String[] { _left, _center, _right, };
assertEquals(1, wb.getNumberOfSheets());
assertEquals("Foo", wb.getSheetAt(0).getRow(0).getCell(0).getRichStringCellValue().toString());
}
+
+ /**
+ * Missing left/right/centre options on a footer
+ */
+ public void test48325() throws Exception {
+ HSSFWorkbook wb = openSample("48325.xls");
+ HSSFSheet sh = wb.getSheetAt(0);
+ HSSFFooter f = sh.getFooter();
+
+ // Will show as the centre, as that is what excel does
+ // with an invalid footer lacking left/right/centre details
+ assertEquals("Left text should be empty", "", f.getLeft());
+ assertEquals("Right text should be empty", "", f.getRight());
+ assertEquals(
+ "Center text should contain the illegal value",
+ "BlahBlah blah blah ", f.getCenter()
+ );
+ }
}