https://bz.apache.org/bugzilla/show_bug.cgi?id=58883

--- Comment #2 from [email protected] ---
What i'm doing is reading the cells and writing them to a csv file:

try(Reader reader = new InputStreamReader(sheetInputStream,"UTF-8")){
            InputSource sheetSource = new InputSource(reader);
            sheetSource.setEncoding("UTF-8");
            SAXParserFactory saxFactory = SAXParserFactory.newInstance();
            SAXParser saxParser = saxFactory.newSAXParser();
            XMLReader sheetParser = saxParser.getXMLReader();
            // ContentHandler handler = new MyXSSFSheetHandler(styles, strings,
            // this.minColumns, this.output);

            DataFormatter format = new MyDataFormatter();
            SheetContentsHandler blof = new
MySheetContentsHandler(this.printStream, rowsLimit);
            ContentHandler handler = new XSSFSheetXMLHandler(styles, strings,
blof, format, false);

            sheetParser.setContentHandler(handler);
            sheetParser.parse(sheetSource);
            }

-- 
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]

Reply via email to