Tagged Questions
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.
18
votes
3answers
6k views
JExcelAPI vs Apache POI, which is better?
I have to parse a simple Excel file (xls or xlsx, free to choose) to extract data from it. Each row will contain an account data; each column will be like FirstName, e-mail etc.
No fancy formating in ...
11
votes
3answers
4k 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 ...
10
votes
5answers
4k 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 ...
8
votes
1answer
4k 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 ...
7
votes
5answers
539 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 ...
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 = ...
7
votes
4answers
12k 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 ...
7
votes
1answer
5k 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 ...
6
votes
2answers
176 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
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 ...
6
votes
3answers
2k 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 ...
6
votes
8answers
7k 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 ...
6
votes
11answers
5k 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 ...
5
votes
1answer
204 views
Apache POI output problem
I have a problem with Apache POI. I attempt to return a file after I have processed the relevant data. When I go to return the file to the browser(Both IE8/9, firefox), the browser returns a load of ...
5
votes
2answers
526 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 ...
5
votes
1answer
970 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: ...
5
votes
2answers
322 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 ());
...
5
votes
2answers
920 views
How to search an Excel sheet for a specific date using Apache POI?
I've been using the example code given to search the sheet's contents:
Sheet sheet1 = wb.getSheetAt(0);
for (Row row : sheet1) {
for (Cell cell : row) {
CellReference cellRef = new ...
5
votes
1answer
2k 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 ...
5
votes
1answer
382 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 ...
5
votes
8answers
5k 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". ...
4
votes
1answer
334 views
Adding pie chart in excel sheet using Apache POI library?
Is it possible to add different charts in an Excel sheet using Apache POI library?
4
votes
3answers
1k 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 ...
4
votes
1answer
413 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 ...
4
votes
1answer
250 views
Poi Formula evaluation
I am facing difficulties while reading formula cell values with POI
I have created formula cell as follows:
cell.setCellType(HSSFCell.CELL_TYPE_FORMULA);
cell.setCellFormula("SUM(D8..F8)");
And ...
4
votes
1answer
250 views
how to print the exact date cell value in the excel sheet date format like mm/dd/yyyy using apache poi
I am using apache poi 3.5 for extracting data from the excel sheet.i having the date cell formatted in mm/dd/yyyy.
If i print using cell.getDateCellValue() then print the date in other format.so, i ...
4
votes
4answers
2k 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 ...
4
votes
6answers
3k 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 ...
4
votes
4answers
3k 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 ...
4
votes
4answers
774 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 ...
4
votes
1answer
1k views
JXL and Apache POI parsing excel with attached image objects
I have tried using JXL and Apache POI to load data from an excel file, up until now the JXL mechanism has worked fine. Even if I embed an images in the file.
I received a file from a source which ...
4
votes
4answers
6k 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 ...
3
votes
1answer
60 views
Is there a tool that would replace passing Excel files back and forth and merging them?
Some legacy software relies on downloading multiple Excel files, merging the contents, sending it back out, someone far away making some changes to it, and then sending the modified Excel file back, ...
3
votes
2answers
109 views
how to get data from excel file?
Actually i am working on a java program that extracts data from an Excel file,
and i am using the POI Library, as a matter of fact i must specify the type of every extracted value, but the file ...
3
votes
2answers
101 views
How to make sure a clojure variable is of the right Java type
java-code XSSFRow row = sheet.getRow(p);
clojure-code (def row (.getRow sheet p))
How do we make sure that row is of type XSSFRow ?
3
votes
2answers
423 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 ...
3
votes
5answers
760 views
Writing a large resultset to an Excel file using POI
This is sort of inline w/ Writing a large ResultSet to a File but the file in question is an Excel file.
I'm using the Apache POI library to write an Excel file with a large data set retrieved from a ...
3
votes
1answer
63 views
Name a cell with POI
In normal excel one can name a cell (or a range) using the little text box in the top left part of the sheet, so for example one could name a cell from H13 to "total".
Is there a way to do that ...
3
votes
2answers
627 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 ...
3
votes
2answers
512 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?
...
3
votes
1answer
273 views
How to extract images from Thumbs.db in Java?
HI
I read about POI project and tried to extract images from thumbs.db but getting exception in code .. Code os
InputStream stream = new FileInputStream("C:\\Thumbs.db");
POIFSFileSystem fs = new ...
3
votes
4answers
2k views
java.lang.OutOfMemoryError: Java heap space while reading excel with Apache POI
My file is 9MB and I got this error while loading workbook.
XSSFWorkbook workbook = new XSSFWorkbook(excelFilePath);
this line causes to java.lang.OutOfMemoryError: Java heap space
How can I ...
3
votes
1answer
290 views
apache poi vs python xlrd
I was going to use apache poi or python xlrd on linux to read spreadsheets in a program on linux. I am biased towards python xlrd but apache poi seems like a more complete project to me (probably ...
3
votes
1answer
267 views
How to evaluate a excel formula through XSSF event API
I am reading XLSX files using event API of POI, i.e I read the contents of the XLSX sheet through a SAX Parser. I want to know how can we get the computed value of a formula by using XSSF event API.
...
3
votes
1answer
227 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 ...
3
votes
1answer
300 views
How to generate RSID attributes correctly in Word .docx files using Apache POI?
I have been using Apache POI to manipulate Microsoft Word .docx files — ie open a document that was originally created in Microsoft Word, modify it, save it to a new document.
I notice that new ...
3
votes
2answers
303 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 ...
3
votes
2answers
390 views
Problem in reading Xls Using POI jar
hi
I wanted to get the value of a Numeric cell as a simple string.
Suppose there the type of cell is numeric with value 90%.
Now I cannot use cell.getStringCellValue() as it will throw exception.
I ...
3
votes
2answers
3k views
Invalid header signature; IOException with Apache POI on excel document
I'm getting:
java.io.IOException: Invalid header signature; read 0x000201060000FFFE, expected 0xE11AB1A1E011CFD0
when trying to add some custom properties to an excel document using apache POI HPSF.
...
3
votes
4answers
5k 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 ...