0
votes
0answers
36 views

Unable to append rows in excel using POI api in java

I am trying to append rows to an existing excel using POI api following the steps mentioned below: try { lFout = new FileOutputStream(lOutputFileName); lFin = new ...
1
vote
0answers
361 views

excel 2007 unreadable content using apache poi (.xlsx)

I'm having issue using the apache poi for excel 2007 utilizing the XSSF I have two code snippets below (fat-fingered). The first seems to work, as the workbook opens correctly in excel 2007, and ...
-2
votes
1answer
134 views

Add data validation in excel file (*.xlsx)

I would like to add one condition to check the data on the first column as follow: 0 < data <= 1 So, how can I do it by Apache Poi library? Thank you so much
0
votes
1answer
181 views

Apache POI - How to protect sheet with options?

I'm using the Apache POI to generate an Excel File (2007). What I want is to protect the sheet, but with some options enabled. By options I mean the check box list when you try to protect the sheet in ...
0
votes
1answer
1k views

Read excel file 2010 apache poi ignoring empty cells

I am having an problem, while java application reading Excel file .xlsx extention, The application is working normally, but in the workbook has many sheets, 1, 2 sheets reading correctly , but when ...
1
vote
1answer
1k views

Merge and Color style not applying in Apache POI excel 2003 format

In Apache POI, I have apply some styles for some cells and merged those cells. When I open in 2010 or 2007 its works fine, but in 2003 the formatting style is gone. It thorws the compatibility check ...
0
votes
2answers
2k views

unreadable content error with apache POI 3.8

I'm using Apache POI 3.8. I have a JSP that generates an excel (.xslx) file. I developed it locally and the file could be opened without any problems. Then, I deployed the app in the Dev environment ...
0
votes
1answer
1k views

Applying specific cell data format using POI

I need to apply specific data format to cell. XSSFCellStyle cellStyle = workBook.createCellStyle(); XSSFDataFormat format = workBook.createDataFormat(); ...
1
vote
3answers
694 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
3answers
733 views

how to read number of record in xlsx file using Apache POI?

I have requirement to read *.xlsx file in java for that i am using Apache POI API.if number of row are less it's work nicely but when number of row are greater then or equals 65536. i got an exception ...
3
votes
1answer
730 views

how to “format as table” in excel or apache POI?

In Excel 2010 it's possible to "format as table" a group of cells - enabling easy sorting and filtering (Home > Format As Table). Can I do the same in Apache POI? Alternatively, can one accomplish ...
6
votes
9answers
2k views

Best language to parse extremely large Excel 2007 files

My boss has a habit of performing queries on our databases that return tens of thousands of rows and saving them into excel files. I, being the intern, constantly have to write scripts that work with ...
0
votes
2answers
591 views

Why is a cell value returned as an empty string even though it has content?

I wrote a Java method that uses POI HSSF API to convert an Excel file to my data structure. The code worked just fine for a while. But now there are suddenly problems. I suspect it might be because ...
1
vote
4answers
3k views

JAVA - Apache POI OutOfMemoryError while writing Excel File

I am writing an Excel File using Apache POI. I want to write in it all the data of myResultSet which has the fieldnames(columns) stored in the String[] fieldnames. I have 70000 rows and 27 columns ...
0
votes
1answer
997 views

Issues and gotchas with new POI 3.6 API (XSSF) working with Excel 2007 workbooks

I just started using the new POI 3.6 http://poi.apache.org XSSF which was released in December 2009. The updated API provides support for reading and writing in the OOXML spreadsheet format (.xslx) ...