Tagged Questions

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 ...
7
votes
5answers
540 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
4answers
13k 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 ...
6
votes
8answers
495 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
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
528 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
971 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
923 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
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
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
775 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
61 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
110 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
429 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
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
630 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
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
228 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
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
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 ...
3
votes
4answers
4k 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 ...
3
votes
2answers
619 views

decrypt excel files

Hi I have 1000 encrypted workbooks which I would like to decrypt by providing a pwd. I could not find a decrypt method under apache poi or python's xlrd module. Does anyone know a library which could ...
3
votes
6answers
3k views

Excel POI 3.5 WorkBook Java Heap Space Exception?

I am using latest POI 3.5 for Excel reading . I have Excel MS office 2007 installed and for that poi is providing XSSF for executing the data. For 15000 lines of data it is executing properly , but ...
3
votes
1answer
2k views

Excel currency format with Apache POI

I use Apache POI to write excel sheets. I'm very happy with it, but I have the following problem: my program is multi-currency and internationalized. In the excel sheet I write, I want my currency ...
2
votes
3answers
52 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 ...
2
votes
3answers
131 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 ...
2
votes
2answers
340 views

Remove template row in JXLS when input list is empty

I'm using JXLS to populate a template excel spreadsheet. Sometimes, one input - a list - is empty. When this happens, the template fields which use this list are shown in the populated spreadsheet ...
2
votes
2answers
423 views

How to write csv file on the basis of Excel using java?

I have spreadsheet with certain data. I would like to programmatically dump this to CSV file. How can I do this using java?
2
votes
1answer
692 views

Apache POI XSSF reading in excel files

just got a quick question about how to read in from an xlsx file using the xssf format from Apache. Right now my code looks like this: InputStream fs = new FileInputStream(filename); // (1) ...
2
votes
2answers
145 views

Focus on first cell in excel

HSSFWorkbook wb = new HSSFWorkbook(new FileInputStream(file)); HSSFSheet s = wb.getSheetAt(0); wb.setActiveSheet(0); s.showInPane((short)0, (short)0); FileOutputStream out = new ...
2
votes
2answers
157 views

Recalculating formulas in spreadsheet using Apache POI

I'm trying to use POI XSSF to evaluate some Excel formulas. The values do not have to be saved, and I may have to calculate many formulas, so I'm trying to do it all in the same cell. The problem is ...
2
votes
2answers
510 views

How to get chart info from an Excel spreadsheet using Apache POI?

Is it possible to extract chart information from an Office 2007 (xlsx / OpenXML) spreadsheet using Apache POI? I've managed to read in the spreadsheet and even get the part that refers to the chart ...
2
votes
2answers
984 views

read single column of excel sheet using java

i have an excel sheet...i want to write a method which takes parameter as column number that to be read and return a array consist of all the data in that column. and place that column element in xml ...
2
votes
1answer
486 views

How to select and bold the whole worksheet with Apache POI

I am a beginner with Apache POI library. in VBA, I know I can select and bold the whole worksheet with following code Dim ws As Worksheet Set ws = ThisWorkbook.Sheets(1) ws.Cells.Font.Bold = True ...
2
votes
1answer
284 views

Apache POI set selected cell after xls document opens

We have next situation: our system has data export in xls format, this is huge file with many rows and columns. And after user download and open document he see document scrolled to last column and ...
2
votes
2answers
280 views

File size issue. while poi read write

I am using apache poi api to deal with my spread sheet files. I have observed, if we try to edit an existing .xls file it size is not the same as if that same file (same data ) is written in one go.
2
votes
2answers
3k 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 ...

1 2 3 4