https://issues.apache.org/bugzilla/show_bug.cgi?id=46269
--- Comment #2 from Josh Micich <[EMAIL PROTECTED]> 2008-11-29 00:48:30 PST --- Created an attachment (id=22963) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=22963) zip two java files I took a look at the example file (Attachment id=22916) and saw that only 5 BIFF2 records types were present. It was relatively easy to write a BIFF2 stream reader that would handle just these records. This might be a viable solution path if your input stays relatively simple. Here is some sample code to call the attached converter: InputStream is = new FileInputStream("ex46269-22916.xls"); HSSFWorkbook wb = BIFF2To8Converter.convert(is, "Sheet1"); -- 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]
