https://issues.apache.org/bugzilla/show_bug.cgi?id=32475
--- Comment #5 from Joern Muehlencord <[EMAIL PROTECTED]> 2008-08-20 09:11:39
PST ---
The error is somehow influenced by the name of the sheet - but I could not find
the relation. In one of our projects we have a workbook with two sheets - first
named "WTU versorgt", second named "eigenversorgt".
The workaround for this issue: we changed the order of the two sheets during
creation. Instead of
HSSFSheet sheet = workbook.createSheet("WTU versorgt");
HSSFSheet sheet = workbook.createSheet("eigenversorgt");
we have now
HSSFSheet sheet = workbook.createSheet("eigenversorgt");
HSSFSheet sheet = workbook.createSheet("WTU versorgt");
and it works, no error is shown while opening the file.
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]