Apache POI is a Java library for reading and writing various Microsoft file formats, especially Office related ones, based on OLE2 and OOXML, such as XLS and DOCX.
15
votes
11answers
17k views
How can I read numeric strings in Excel cells as string (not numbers) with Apache POI?
I have excel file with such contents:
A1: SomeString
A2: 2
All fields are set to String format.
When I read the file in java using POI, it tells that A2 is in numeric cell format.
The problem is ...
15
votes
4answers
29k views
Reading date values from excel cell using POI HSSF API
I'm using POI HSSF API for my excel manipulations in Java. I've a date value "8/1/2009" in one of my excel cell and while I try to read this value using HSSF API, it detects the cell type as Numeric ...
14
votes
3answers
8k views
Create Excel Charts in Java
I've been using Apache POI to create and modify Excel spreadsheets, but I'm wondering if there is a way (even if it's with a different library, preferably open source) to create charts in Excel in the ...
13
votes
1answer
9k views
How can I create a simple docx file with Apache POI?
I'm searching for a simple example code or a complete tutorial how to create a docx file with Apache POI and its underlying openxml4j.
I tried the following code (with a lot of help from the Content ...
12
votes
1answer
11k views
POI - How do I set cell value to Date and apply default Excel date format?
I've been using Apache POI for some time to read existing Excel 2003 files programmatically. Now I have a new requirement to create entire .xls files in-memory (still using Apache POI) and then write ...
11
votes
1answer
9k views
Problem in fitting the excel cell size to the size of the content when using apache poi
I am beginner to Apache POI api. I am trying to create excel sheet using arraylist.
My java code is as follows.
HSSFWorkbook wb = new HSSFWorkbook();
HSSFSheet sheet = wb.createSheet("new ...
11
votes
5answers
10k 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 = ...
11
votes
5answers
8k views
Copying Excel Worksheets in POI
Does anyone know of a means to copy a worksheet from one workbook to another using POI? The Workbook class has a cloneSheet method, but there doesn't seem to be able to insert a cloned sheet into a ...
11
votes
1answer
1k views
how to create appendable excelsheet using java
I want to create an append-able excel sheet.
Like i have four columns stream1 stream2 stream3 stream4
first time i am inserting data only first column(stream1)
after that i want to full fill other ...
10
votes
4answers
8k views
Learning Apache POI for Java
I'm trying to learn Apache POI for Java quickly (for manipulating Excel). I've been googling for tutorials, but so far all I've found is short, 2-paragraph explanations followed by a code sample. I ...
9
votes
3answers
19k views
Apache POI Excel - how to configure columns to be expanded?
I am using Apache POI API to generate excel spreadsheet to output some data.
The problem I am facing is when the spreadsheet is created and opened, columns are not expanded so that some long text ...
9
votes
8answers
12k views
Reading string value from Excel with HSSF but it's double
I'm using HSSF-POI for reading excel data. The problem is I have values in a cell that look like a number but really are strings. If I look at the format cell in Excel, it says the type is "text". ...
9
votes
2answers
11k views
Basic Excel currency format with Apache POI
I'm able to get cells to format as Dates, but I've been unable to get cells to format as currency... Anyone have an example of how to create a style to get this to work? My code below show the styles ...
9
votes
5answers
2k views
Is there a Scala wrapper for Apache POI?
I would like to use Apache POI to read/create Excel files in an Scala app. Sure, I can use the POI library directly, it's Java after all, but I would like to have the Scala feel. So is there a Scala ...
9
votes
7answers
12k views
How to get an Excel Blank Cell Value in Apache POI?
I have a huge excel file with tons of columns which looks like this :-
Column1 Column2 Column3 Column4 Column5
abc def ghi
mno pqr
......
This is the ...
9
votes
2answers
1k views
Reading date value from excel cell as a String
I am using apache poi library to read excel file. I am stuck while reading password cell. If user gives date as a password in password cell i.e. 16/05/2012. I am reading this value as "41045" while ...
9
votes
7answers
14k views
API to write huge excel files using java
I am looking to write to an excel (.xls MS Excel 2003 format) file programatically using Java. The excel output files may contain ~200,000 rows which I plan to split over number of sheets (64k rows ...
8
votes
2answers
8k views
Cannot import XSSF in Apache POI
I am referencing the version 3.7 of the Apache POI and I am getting a "cannot be resolved" error when I do:
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
Other import statements that reference ...
8
votes
7answers
11k views
How to Cache InputStream for Multiple Use
I have an InputStream of a file and i use apache poi components to read from it like this:
POIFSFileSystem fileSystem = new POIFSFileSystem(inputStream);
The problem is that i need to use the same ...
8
votes
1answer
2k views
Using Apache POI HSSF, how can I refresh all formula cells at once?
I am filling cells of an Excel file using Apache POI, and there are a lot of formula cells in the document. However, their values are not refreshed when I open the document in Excel.
It's my ...
8
votes
2answers
7k views
How to read Excel cell having Date with Apache POI?
I'm using Apache POI 3.6, I want to read an excel file having date like "8/23/1991".
switch (cell.getCellType()) {
...
...
case HSSFCell.CELL_TYPE_NUMERIC:
value = "NUMERIC value=" + ...
8
votes
6answers
9k views
Removing a row from an Excel sheet with Apache POI HSSF
I'm using the Apache POi HSSF library to import info into my application. The problem is that the files have some extra/empty rows that need to be removed first before parsing.
There's not a ...
7
votes
5answers
7k views
How to get more than 255 columns in an excel sheet using Apache POI 3.6
I'm creating a calendar in excel. Column 1 is 01.01.2010 (dd.MM.yyyy), Column 2 is 02.01.2010 and so on.
This is my code:
int day_cell = 0;
for(int i = 0; i < days.size(); i++)
{
Date day ...
7
votes
2answers
10k 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, ...
7
votes
2answers
5k views
Issues resolving XSSFWorkbook - Java - POI .jar
I'm trying to do work upgrading a Java application to handle .xlsx, using a newer POI library than our existing one. I'm having issues similar to those mentioned in the comments to the answer here: ...
7
votes
2answers
7k 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 ...
7
votes
3answers
2k views
POI / Excel : applying formulas in a “relative” way
I'm using Apache's POI to manipulate Excel (.xls) files with Java.
I'm trying to create a new cell whom content is the result of a formula as if the user had copied/pasted the formula (what i call ...
7
votes
1answer
3k views
Trying to port Apache POI to Android
I'm looking for a lightweight version of poi-3.8.jar to use it in an Android (private) app.
I don't seem to be able to fit the whole 1.7Mb jar in the APK for some reason (and it would be wrong to do ...
7
votes
4answers
8k views
Streaming a POI workbook to the servlet output stream
I build a very large POI workbook, on my web server. Holding the entire workbook in memory , will not scale for multiple concurrent requests. Is there a way i can progressively write the workbook to ...
7
votes
3answers
880 views
How do I fix SpreadSheetAddRows function crashing when adding a large query?
EDIT3: Thanks to the help of @Leigh I've narrowed down the problem to the date columns in the query. Using the original code set and POI, the page crashes when SpreadSheetAddRows() attempts to add a ...
7
votes
2answers
1k views
Detect needed print orientation with Apache POI
I'm using Apache POI to create xls spreadsheets. Is there a way to detect if the data fits in portrait mode or if I have to set the sheet to landscape mode? I know how to set the modes, but I don't ...
6
votes
2answers
2k views
Where to get apache poi port for .net
I would like to know if there is a website where I could download the Apache POI ported for .net?
I already found this link in the web
http://www.apache.org/~avik/dist/poi-2.5.1-dev-20040708.dll
I ...
6
votes
2answers
15k views
How to insert a row between two rows in an existing excel with HSSF (Apache POI)
Somehow I manage to create new rows between two rows in an existing excel file. The problem is, some of the formatting were not include along the shifting of the rows.
One of this, is the row that ...
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 ...
6
votes
5answers
14k views
Create excel chart using Apache POI
I need to create excel sheet from my Java code which contains charts like Bar chart, Line Chart etc using the Apache POI library.
Is it possible?
I am not able to find any useful code example for the ...
6
votes
2answers
439 views
Memory footprint for a java application
In our application, we allow users to upload/download data through an excel sheet and we use Apache POI to read and write these excel sheets.
We were planning to migrate all our xls sheets to xlsx, ...
6
votes
4answers
4k views
POI performance
I am using POI in my J2EE web application to generate a workbook.
However, i find that POI takes around 3 mins to create a workbook with 25K rows(with around 15 columns each).
Is this a POI ...
6
votes
3answers
11k views
POI: Importing CSV data
How can I efficiently import CSV data with Apache POI? If I have a very large CSV file that I would like to store in my Excel spreadsheet, then I don't imagine that going cell-by-cell is the best way ...
6
votes
3answers
3k views
Apache POI evaluate formula
I have some formulas in cells of my sheet, and I want to evaluate them after I insert some values. Ex :
My formula is =SUM(B1,B2)
Before values insertion B1 value was 1, and B2 value was 3, and the ...
6
votes
3answers
4k views
Apache POI Java Excel Performance for Large Spreadsheets
I have a spreadsheet I'm trying to read with POI (I have both xls and xlsx formats), but in this case, the problem is with the xls file. My spreadsheet has about 10,000 rows and 75 columns, and ...
6
votes
2answers
1k views
How to print a number greater than 7 digits using poi(2.5) from excel sheet in the console using java
while retrieving the value it is giving in the exponential format for big numbers.
while (cells.hasNext ())
{
HSSFCell cell = cells.next ();
System.out.println ("Cell No.: " + cell.getCellNum ());
...
6
votes
2answers
443 views
Is there any way to display line breaks , order list with using HWPFDocument
I am trying to create the word document using the HWPFDocument . I am able to create the doc with some feature but not able to get few things. My problem is simple but i am not able to figure out few ...
6
votes
1answer
2k views
Java Apache POI newline characters are ignored when writing to XWPFTable cell
Hoping someone might have some experience with this. I'm using Apache POI 3.8b4 to output a table in Word 2007 format. When I do something similar to the following:
XWPFTableRow row = ...
5
votes
2answers
7k views
Java POI : How to read Excel cell value and not the formula computing it ?
I am using Apache POI Api to getting values from an Excel file.
Everything is working great except with cells containing formulas. In fact, the cell.getStringCellValue() is returning the formula used ...
5
votes
3answers
5k views
Setting Excel cell value in Numeric format using POI
I want to store numeric data in excel sheet.
The numeric data is represented by String type in my java code.
Is it possible to set it as numeric without casting it?
I've tried the following code, but ...
5
votes
2answers
913 views
Writing JTable into Excel
I am planning to move the contents of a JTable into a Microsoft Excel sheet. The Excel sheet should have some format specifications. For instance if a column has a value 'A' it should be green in ...
5
votes
2answers
6k views
how to read all cell value using Apache POI?
I want to read all cell value from excel sheet using Apache POI and store it into one dimensional string array .Is is possible to read data from excel row by row and extract value from each cell?
...
5
votes
2answers
3k views
Is there is Limition of using opencsv API or Apache Poi Api?
I am creating Excel file on the basis of CSV file.for reading CSV file,i am using Opencsv API and Apache POI.In my csv contain 65537 row.
class Test {
public static void main(String[] args) throws ...
5
votes
1answer
7k views
Setting foreground color for HSSFCellStyle is always coming out black
I am using POI to create an Excel spreadsheet in Java. I have the following code used for creating a header row:
HSSFWorkbook wb = new HSSFWorkbook();
HSSFSheet sheet = wb.createSheet("Report");
// ...
5
votes
3answers
4k views
Create a password protected excel file using apache poi?
I am developing a simple Java program to create excel file using (Apache POI) API.
I am using oracle 10g as a database and using ojdbc14 jar.
I have a table called USERINFO having 3 columns namely ...

