Tagged Questions
0
votes
0answers
29 views
how to draw line using setShapeType in apache poi XSSF usermodel
I'm updating the code to use 3.8 poi, so I'm changing the code from HSSF to XSSF. I have setShapeType to OBJECT_TYPE_LINE in HSSF, how to change the setShapeType for XSSF usermodel.
I need to draw a ...
0
votes
1answer
102 views
How to get row count in an Excel file using POI library?
Guys I'm currently using the POI 3.9 library to work with excel files. I know of the getLastRowNum() function, which returns a number of rows in an Excel file.
The only problem is getLastRowNum() ...
0
votes
1answer
172 views
apache-poi inserting filename in header or footer
I'm using the apache poi library (poi-3.8-20120326.jar)
How can I add the filename in the footer of an xls (hssf) document?
My approach is the following:
final static public String FILE_NAME = ...
0
votes
1answer
186 views
Insert a checkbox in an Excel sheet using Apache POI
I want to pragmatically insert a number of checkbox in different cells. I want to keep a reference for each one in order to read them later on after the user check or uncheck.
Can I do that in Java ...
1
vote
1answer
188 views
Delete an excel sheet using Apache POI
I have to delete a sheet from the Excel file.
Here's my code snippet :
FileInputStream fileStream = new FileInputStream(destFile);
POIFSFileSystem fsPoi = new POIFSFileSystem(fileStream);
...
0
votes
0answers
79 views
How to get hold of an excel sheet by its name using Apache POI
I have a .xls file which is auto generated through some process. There is only 1 sheet(with a name) in the workbook. When i use the following code, it is not getting hold of the sheet
HSSFSheet sheet ...
0
votes
1answer
354 views
How to export <table> content (which is inside a one <div >) into excel by JSP
I have developed a web application using JSP which creates a page with
several page elements and a with multiple records.
I wanted to export the content in that into an excel file.
I used the code ...
0
votes
1answer
202 views
JXL + POI : incompatibility
Im first using JXL to modify one xls file created by POI. After that I will try to read that file with POI. In the moment of POIFSFileSystem creation
poFileSystem = new POIFSFileSystem(input);
Im ...
1
vote
1answer
210 views
Apache POI HSSF: How to add shape which would not resize along with corresponding cell?
I need to add shape (specifically circle) to xls-document using POI. So, I wrote following code:
private void drawLabel(HSSFSheet sheet, HSSFCell cell) {
final short columnIndex = (short) ...
0
votes
1answer
578 views
delete all empty rows in excel file with JAVA
can someone tell me how to iterate and delete all the empty rows in excel file using apache poi? I am calling those 2 functions with row indexes that i wish to delete, but the second one (shift) is ...
-1
votes
1answer
344 views
HSSFSheet remove all empty rows
I have an excel sheet with, for exemple 3,4 adn 6th line that are empty (previously I called sheet.removeRow() for those rows). In total i have 7 lines
Now, having indexes of those empty rows, i want ...
0
votes
1answer
760 views
How to set integer value in the excel sheet created through java?
When I create excel sheet through java ,the column which has number datatype in the oracle table, get converted to text format in excel.I want it to remain in the number format.Below is my code ...
4
votes
1answer
798 views
apache poi: saving jtable to a file
I've recently started working with java and I'm facing some issues with the apache poi library when I need to create an excel file starting from a jTable.
I've read many threads and come up with some ...
1
vote
1answer
470 views
Getting error using POI HSSF
I'm getting an error when trying to open an Excel sheet with MS office 2003. This Excel sheet is created using HSSFWorkbook, implementing the usermodel scope org.apache.poi.hssf.usermodel
In ...
0
votes
1answer
135 views
why i can not open an Excel(xls) with HSSF
Im getting an error when i am trying to open an Excel sheet with MS office 2003.
This excel sheet is created using HSSFWorkbook immplementing the usermodel scope
org.apache.poi.hssf.usermodel
What ...
1
vote
1answer
2k views
Adding border to a merged region in POI XSSF workbook
I'm using apache poi 3.7 and I need to put border to a range of cells or merged region.
how can I to apply border to a merged region when the sheet and workbook type is XSSF. In HSSF type I use ...
0
votes
0answers
1k views
Apache poi Excel HSSF wrap text issue
Using poi 3.8 and excel 2010 installed on my system.
Refer to the businessplan example given on the apache website.
When I generate the XSSF (xlsx) workbook, cell B2 appears properly wrapped (wrap ...
0
votes
1answer
481 views
Apache Poi: Converting from HSSF to SS?
I've converted all of my old code in HSSF to SS except for the portion where I make the work book.
Old Code:
HSSFWorkbook wb = new HSSFWorkbook(new FileInputStream(file));
New Non-working Code:
...
0
votes
1answer
172 views
Apache POI: Storing key and sum in a Map
I'm have an excel spreadsheet that looks something like this:
+-----------------+--------+----------------------+
| Title | Value | Average Price List |
...
-2
votes
1answer
344 views
Removal of decimal in HSSF cell
i am reading data from an excel sheet which has decimals.
i want to obtain the result without decimals.
I'm using cell.getNumericCellValue () which gives decimal - is there a function which removes ...
1
vote
2answers
409 views
Executing Excel Macro From ColdFusion Server
I have a ColdFusion Web application which lets the user upload an Excel Workbook on the server.
I would like to execute a macro within that Excel file, once the file has been uploaded.
Anyone has an ...
0
votes
2answers
7k views
Java POI: How to find an Excel cell with a string value and get its position (row) to use that position to find another cell
I'm looking for a cell in a spreadsheet that has the string 'Total' and then use the row in which that cell is to find the total value in another cell which is always the same cell/column (the 10th ...
1
vote
1answer
4k views
Creating excel sheet from template in Java, new versions of Excel
I found the following code to create a excel sheet from an existing template with formats and add data to it and save it to a new file
POIFSFileSystem fs = new POIFSFileSystem(
new ...
1
vote
1answer
612 views
Extracting data in spreadsheet columns in Apache POI API
Just want to make sure one thing.
Does the Apache POI API have any built-in collection/object, like row and cell, for a column in a spreadsheet?
Or do I have to build one myself and add all the ...
0
votes
0answers
388 views
How to sign macros in Excel in Apache POI?
We have Apache POI in use to convert Excel files to other Excel files. We do this by loading the Excel workbook to a HSSFWorkbook, modifying some cells, and saving it to a stream.
The original Excel ...
0
votes
3answers
322 views
Apache POI extracting value as it looks in Excel
I have Excel file and some contents, coming from external source(database, file, whatever).
I've encountered problems with numeric cells in Excel -getNumericValue returns double value for any cell, no ...
0
votes
2answers
105 views
How to store directly data in Apache POI XLS?
I use Apache POI HSSF API for Java to generate a long long report as XLS file. The problems is date is really large and my memory fails before calling wb.write(out);. So I wonder if there is some way ...
0
votes
1answer
1k views
Unable to use POI HSSF library in Eclipse plugin development
I am developing an Eclipse plugin to create and perform operations on excel files and I am not able to use the POI HSSF library for the same.
I have downloaded the poi-3.7-20101029.jar file. When I ...
1
vote
1answer
853 views
Apache POI-HSSF: Getting Decimal Instead of Text String
I am using Apache POI-HSSF for working with Excel files.
I have a cell in my spreadsheet that looks like "115". I verified that it is formatted as "Text" (Format Cells -> Text).
However, when I read ...
0
votes
1answer
924 views
populating a field in excel using java HSSF POI - excel does not sort date field properly
So I am populating an excel document using Java's HSSF POI and I am using a excel template which has some headers already entered into it like so...
HSSFWorkbook workbook = ...
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 ...
0
votes
2answers
7k views
Copy and paste rows with HSSF (Apache POI) [duplicate]
Possible Duplicate:
How to insert a row between two rows in an existing excel with HSSF (Apache POI)
How can I copy the values and all the formatting of a row using HSSF. Using the MS Excel ...
0
votes
1answer
564 views
How to insert new row in between 2 rows in existing excel sheet
I want to use an existing HSSFWorkBook (apache) and insert new rows in between two existing rows with new values.I tried with sheet.shiftRows(n1, n2, n3), but it overwrites after shifting the values.
...
0
votes
1answer
887 views
How to let user download the data in database to an excel sheet file from web application in Java/Struts?
I want to generate a report which includes an excel sheet which is generated from the data from the database . I am using Apache POI HSSF for creating the excel sheet file in the model.
Now how to ...
5
votes
2answers
2k 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 ...
0
votes
4answers
4k views
javac: package org.apache.poi.hssf.usermodel does not exist
I have a program attempting to use classes from the jakarta-poi-3.0.2.jar in my /usr/share/java directory:
import org.apache.poi.hssf.usermodel.HSSFCell;
import ...
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 ...
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");
// ...
3
votes
1answer
454 views
How to determine whether a spread-sheet cell contains a date, or a real number?
When a cell in a spreadsheet contains a simple date (mm/dd/yyyy) the poi API flags the cell-type as 'numeric'. This is probably because spreadsheets ( IMO ) historically recognize only strings and ...
2
votes
1answer
2k views
How to know number of sheets in a workbook?
I'm using hssf api for reading data from xls files. But is there any way to get the exact no. of sheets in a workbook containing stored data?
0
votes
1answer
793 views
Extracting charts from Excel documents using POI or HSSF?
I've got a bunch of Excel documents that have data on one sheet and a chart produced from the data on another sheet. I'd like to take those documents and produce a series of HTML pages from them. ...
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 ...
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 ...
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". ...
3
votes
4answers
5k views
How can we read protected password excel file (.xls) with POI API
I've just learned POI and find the HSSF is very simple to read and create excel file (.xls).
However, I found some problem when want to read excel protected with password.
It took me an hour to find ...
0
votes
1answer
1k views
Is there a way to display a HSSFWorkbook Object in a JSP page?
Is there a way to Display a HSSFWorkbook Object in a JSP page without having an output file in the server side?
In the code below I am providing the template file and the beans required for ...
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 ...
0
votes
2answers
2k views
IndexOutOfBoundsException when trying to read MS Excel file using Apache POI-HSSF
Whilst trying to parse MS Excel file using POI-HSSF v3.2 I am getting IndexOutOfBoundsException. The spreadsheet I am trying to read isn't empty it has been created using MS Excel 2003 and BiffViewer ...