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.
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 ...
4
votes
4answers
9k views
Password Protected Excel File
I have an excel spreadsheet that is password-protected. I need to open this spreadsheet and read the data from it. I've been attempting to use the POI API to no avail. A Java solution would be ...
4
votes
2answers
1k views
How do I find out Apache Buildr/Maven 2 repo names
I'm just starting to use Apache Buildr and I'm constantly running into the problem of not knowing what repo urls and versions are available for me to use.
For example I want to use Scala 2.8 in a ...
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 ...
4
votes
6answers
10k 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 ...
15
votes
4answers
28k 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 ...
11
votes
4answers
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 = ...
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
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 ...
0
votes
2answers
4k views
poi wrong date formula value calculated
I have the following code
public boolean processCell(boolean hasData, StringBuffer rowData, Cell cell)
{
switch (cell.getCellType())
{
case Cell.CELL_TYPE_FORMULA:
{
try
{
...
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 ...
4
votes
3answers
14k views
POI: Using Excel templates
Basic question: How do I load an Excel template for use with POI and then save it to an XLS file?
Edit:
The answer is:
FileInputStream inputStream = new FileInputStream(new File(templateFile));
...
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 ...
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 ...
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 ...
2
votes
2answers
6k views
create an excel file for users to download using apache poi, jsp
I'm able to create an excel file using apache poi. however, i want users to be able to download this as a "true" excel file. the effect i want to achieve would be to have a popup box allowing the user ...
1
vote
4answers
8k views
Choosing an excel java api [closed]
All I need to do is open an MS excel sheet - not sure which kind yet (2003, 2007, etc.) - and parse the information in each row into an object. I'm performing only readonly operations.
out of Apache ...
4
votes
4answers
19k views
How do I get the (Java Apache POI HSSF) Background Color for a given cell?
I have an existing excel spreadsheet, which I am accesssing and reading values from, I am using Apache POI HSSF.
It is initialised like this:
HSSFSheet sheet;
FileInputStream fis = new ...
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 ...
3
votes
4answers
6k views
Apache POI: How to convert HSSFWorkbook to XSSFWorkbook
How to convert org.apache.poi.hssf.usermodel.HSSFWorkbook to org.apache.poi.xssf.usermodel.XSSFWorkbook in Apache POI?
Environment: JSE1.6, JBossAS 4.3.2, POI 3.7
1
vote
1answer
691 views
Export to excel while it contains huge data
while i am exporting excel which has huge data(ex:100 rows) i am getting below alert while opening sheet.And if we click on proceed,it is opening in protected view.
While we save this excel it is ...
0
votes
3answers
1k views
Issu while reading excel document (java code)
I have a java code which reads the Excel data. On running the java code it's showing the following error. Help me resolve the same. Also, i need to know other method of reading .xlsx file. THANKS
(A ...
0
votes
2answers
361 views
returning decimal instead of string (POI jar)
I need to read xls or xlsx sheet.
successfully I read the sheet, but it returning decimal value instead of string (eg: for 3 -- it is returning 3.0).
I need to read the cell values as it is.
so I need ...
0
votes
3answers
1k views
Excel Cell value with Number format and Category as Currency is not retrieved through Apache POI 3.6
Hi Iam parsing a cell in excel with a particluar format for which the Data format string is coming as "$"#,##0
I want to fetch value within that cell but not able to do so, can someone help?
...
0
votes
4answers
1k views
Learning Apache POI
I am working on a project which requires manipulation of MS word document using Java. I have found that Apache POI is the best API to do that.
But I could not properly understand the use of POI from ...
6
votes
2answers
14k 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 ...
4
votes
7answers
10k views
Word document creation API in Java
I would like to create a word document using a template, replace some variables (fields) and save it as a new word document.
I was thinking using Apache POI, http://poi.apache.org/ is it the best ...
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
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 ...
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 ...
5
votes
1answer
5k views
to get columns from Excel files using Apache POI?
In order to do some statistical analysis I need to extract values in a column of an Excel sheet. I have been using the Apache POI package to read from Excel files, and it works fine when one needs to ...
3
votes
3answers
2k views
How can I access password protected Excel workbook in Java using POI api
I want to read from and write to password protected Excel files. How can I do so using Apache POI API.
2
votes
3answers
8k views
How to read empty cell in excel file using poi and how to add this empty cell to array list?
public void readExcel(String fileName)
try
{
FileInputStream myInput = new FileInputStream(fileName);
POIFSFileSystem myFileSystem = new POIFSFileSystem(myInput);
...
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 ...
5
votes
1answer
260 views
Java Excel POI stops after multiple execution by quartz
I'd like to have a couple of insights on this.
I have a program that reads and writes from a database to an excel file. It's execution is based on a timer using Quartz api and triggered every tuesday ...
3
votes
4answers
3k views
Exception when writing to the xlsx document several times using apache poi 3.7
I am getting the following exception while trying to write an .xlsx file using Apache POI: org.apache.xmlbeans.impl.values.XmlValueDisconnectedException
It seems the problem is using the method write ...
2
votes
2answers
3k views
XSSFWorkbook takes a lot of time to load
I am using the following code:
File file = new File("abc.xlsx");
InputStream st = new FileInputStream(file);
XSSFWorkbook wb = new XSSFWorkbook(st);
The xlsx file itself has 25,000 rows and each ...
2
votes
1answer
2k views
Excel Drop down list using Apache POI
I need to create a drop down list in excel file using Apache POI. and I am able to do that so But
I am not able to make first item in drop down list as default Item.
public class sd {
/**
* @param ...
2
votes
2answers
3k views
creating cell comments using HSSFClientAnchor in apache poi
Could someone please explain to me how to properly use the Anchors when creating cell comments? Mine were working, but the spread sheet changed and I am having issues getting my cell comments to ...
1
vote
1answer
2k views
i put the xmlbeans-2.3.0.jar into path and it says another exception while reading .xslx file using apache poi
i put the xmlbeans-2.3.0.jar into path and it says another exception while reading .xslx file using apache poi. please help me....
Exception in thread "main" java.lang.NoClassDefFoundError: ...
0
votes
2answers
5k views
Apache poi date format
Hi i am reading csv file and getting date in 01-01-2011 but i want it in 01-Jan-2011 format when i write .xlsx file using apache poi library. my code is
XSSFDataFormat df = ...
0
votes
3answers
5k views
How to Extract docx (Word 2007 above) using Apache POI
Hai, i'm using Apache POI 3.6
I've already created some code..
XWPFDocument doc = new XWPFDocument(new FileInputStream(file));
wordxExtractor = new XWPFWordExtractor(doc);
text = ...
5
votes
3answers
10k 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 ...
1
vote
1answer
353 views
Convert doc file to html using Apache Poi
I am working on an android application in which i need to convert MS office files to HTML using Apache Poi.
Till now i am able to convert .xlsx to htm using the following project Source-
...
1
vote
1answer
991 views
reading data from xlsx SXSSFSheet with apache poi java
I want to read data ( cell values ) from a certain xlsx file using apachi poi.
The code ,which i will paste below, creates the SXSSFWorkBook instance succesfully and assigns db.xlsx ( my dummy xlsx ...
1
vote
1answer
2k views
CSV generation possible with Apache POI?
I need to generate csv files and I stumbled on a module in our project itself which uses Apache POI to generate excel sheets aleady. So I thought I could use the same to generate csv. So I asked ...
1
vote
1answer
804 views
How to save the Word Document using POI API?
how to save the Doc file using the same name using POI API
public class readDoc {
public static void main( String[] args ) {
String filesname = "Hello.doc";
POIFSFileSystem fs ...
1
vote
2answers
877 views
how to read content from ms word using jakarta poi
Hi i included jakarta-poi-1.5.1-final-20020615.jar file to read content from ms word.
i am unable to do this ...can anyone help me?
0
votes
2answers
1k views
Unable to insert data using POI for null values in excel sheet
I'm trying to find a blank value in excel (xlsx) sheet and replace with some string like "ENTER VALUE" using my program with Apache POI library as below
I'm able to read and identify blank/null ...
0
votes
1answer
1k views
using WordToHtmlConverter converter in Apache POI
I am trying to use WordToHtmlConverter class to convert a word document in HTML, but the documentation is not clear.
The WordToHtmlConverter has a constructor taking org.w3c.dom.Document, but I don't ...

