Tagged Questions

7
votes
3answers
3k views

Processing large xlsx file in Java

I need to auto-fit all rows in large (30k+ rows) xlsx file. The following code via apache poi works on small files, but goes out with OutOfMemoryError on large ones: Workbook workbook = ...
2
votes
2answers
56 views

Parsing large xlsx file, Date format case

Because xlsx file may contain million rows, I decided to use poi event model, took example from here(ExampleEventUserModel), but found some problem parsing Date format cells. For example I have in ...
2
votes
1answer
399 views

changing location of temp files created using Apache POI

I am stuck with an issue with reading .xlsx file. Some temporary files with random name are created under /tmp/poifiles directory whenever I use WorkbookFactory.create(inputStream);. This directory is ...
2
votes
2answers
4k views

How to extract plain text from a DOCX file using the new OOXML support in Apache POI 3.5?

On September 28, 2009 the Apache POI project released version 3.5 which officially supports the OOXML formats introduced in Office 2007, like DOCX and XLSX. Please provide a code sample for ...
1
vote
1answer
192 views

Write a file in xlsx format using Apache POI

I am getting the following exception while trying to write an .xlsx file using Apache POI NoClassDefFoundError: javax/xml/stream/XMLStreamException Here's the Code Snippet:- XSSFWorkbook wb = new ...
1
vote
2answers
144 views

POI Creates XLSX files incompletely or wrongly(the dimension tag in the XLSX XML reads only A1 after creation instead of A1:500Z)

I write XLSX files through the apache POI library..(I have tried it by using POI 3.8 beta1 to beta 4). When i try to open the XLSX files through Excel 2007 it gives me an error that the sheet has ...
1
vote
1answer
502 views

Apache POI for Excel: Setting the cell type to “text” for an entire column

I need to generate an .xls (Excel) file, using the Java library Apache POI for spreadsheets. The file will contain a list of phone numbers in column A, formatted as "0221...." or "+49221..." - so ...
1
vote
1answer
466 views

How to get the max no. of columns filled in an XLSX file using POI?

I know we can get the max number of columns by iterating over all the rows and calling getLastCellNumber on each row object.. but this approach requires iterating over all the rows which I want to ...
0
votes
0answers
26 views

How can I retain write+read access in .xlsx document created by Poi and streamed by Struts 2

An issue was brought to my attention today about all of our Apache-Poi generated .xlsx documents via the Struts 2 stream action type being Read-Only. In Google Chrome, all of the files save a-ok (no ...
0
votes
1answer
59 views

How to debug Undeclared Entity errors in Microsoft XLSX files

I'm generating large Excel files, in xlsx format. The files contain 100+ thousand rows, with 100+ columns. When I open one of the files, I get this: "Replaced Part: /xl/worksheets/sheet1.xml part ...
0
votes
1answer
188 views

Excel comments using xssf eventusermodel using apache poi 3.7

Here is a link to a code that uses apache 3.7. http://massapi.com/source/poi-3.7/src/ooxml/java/org/apache/poi/xssf/extractor/XSSFEventBasedExcelExtractor.java.html How can i edit this code to get ...
0
votes
2answers
123 views

Is there a way to get all embedded objects in .xlsx file using xssf event mdel api

Is there a way to get all embedded objects in .xlsx file using xssf event model api? Usermodel has the method workbook.getallembedds...similarly is there anything in eventmodel? This is an example ...
0
votes
1answer
556 views

Error reading excel (.xlsx) file using apache poi xssf eventmodel only

I am trying to read an excel file with words and not numeric data using the code from apache site http://poi.apache.org/spreadsheet/how-to.html#xssf_sax_api I get the following error: Processing new ...
0
votes
2answers
997 views

When getting cell content using Apache-POI Library, I get both “Cannot get a numeric value from a text cell” and the reverse of that. How do I fix it?

I realize the question is a little confusing, but I didn't know how else to word it. Anyway, here is the original code: private void readFile(String excelFileName) throws FileNotFoundException, ...
0
votes
1answer
276 views

How to groupColumn in .xlsx files using POI 3.6?

I recently switched from POI 3.1 (HSSF) to POI 3.6 (XSSF) and encountered a problem. The problem is that the groupColumn no longer works as expected! Does anyone know why the column grouping works ...