just got a quick question about how to read in from an xlsx file using the xssf format from Apache.
Right now my code looks like this:
InputStream fs = new FileInputStream(filename); // (1)
XSSFWorkbook wb = new XSSFWorkbook(fs); // (2)
XSSFSheet sheet = wb.getSheetAt(0); // (3)
With all the relevant things imported. My error is that when I hit run, it gets stuck at line (2), in almost an infinite loop. Filename is just a string.
If anybody could give me some sample code on how to fix this I would really appreciate it. all i want right now is to read in a single cell from an xlsx file, cause I was using HSSF for xls files and had no problems. thanks for your help, Andrew
poiandpoi-ooxml. My guess is that there are errors in your .xlsx file. – Danilo Piazzalunga Aug 4 '11 at 21:04