-2
votes
1answer
13 views

Ordering of sheets in excel in apache poi

I want to rearrange the sheets being generated before writing it to an xls document using apache poi in java. Is there any way of doing it? For ex:sheet Names are "RF for 10","Blended for 10","RF for ...
1
vote
1answer
47 views

How can I open an xls file, save it, and then close it all in java?

How can I open an xls file, save it, and then close it all in java? I currently have a workaround where I make java write a vbs script that does the same thing Set excel = ...
0
votes
0answers
91 views

How to get the row count in a excel sheet with Apache POI with Event API

I am using Apache POI Event API to read large excel worksheets. The whole operation is lenghy, becouse I have to put all the data to database. I would like to display progress of import, ie ...
0
votes
0answers
91 views

Reading excel 2003 files with apache POI - FileNotFound

I am writing some code to import Excel files to database. The files could be big (thousands of rows), so I am using the Event API. POI version is 3.9 I am opening the file like this: FileInputStream ...
0
votes
1answer
41 views

Apache POI setPrintArea to A4 page size

I'm working with the apache POI API to generate .xls files, and i want to set the printArea of mi file. I know there is a funcion called setPrintArea() but this one receive as parameters start and end ...
0
votes
2answers
412 views

How to change font color of particular cell apache poi 3.9

I can change foreground color with the following code in apache POI. Now I want to change font color of a single cell. CellStyle style = wb.createCellStyle(); ...
0
votes
0answers
41 views

Apache POI - How to write to XLS in parts

I use Apache POI and I have a lot of data that I want to write to *.xls file in parts. Now I use: FileOutputStream fileOutputStream = null; File tmpFile = new File("blabla.xls"); Workbook workbook = ...
0
votes
2answers
126 views

Error in creating a simple workbook using Apache POI

i am trying to create a simple workbook using Apache POI and getting the following errors.Using apchhe poi 3.9 kindly help me to get out of this thanks. Errors: Exception in thread "main" ...
0
votes
1answer
34 views

How to create rows automatically with Apache POI?

I'm working in a project in Java and I Need to create one xls file with some information. So, depending on the amount of information, I need to create automatically Rows and cells to put this ...
1
vote
2answers
534 views

.xls convert to xlsx using java and POI APACHE

I'm trying to use POI.APACHE to edit excel files in java. I have to convert a .xls to .xlsx because I need to send the file to sharepoint. Thats why it just can't be renamed with a different ...
3
votes
2answers
502 views

Invalid header reading xls file

I am reading one excel file on my local system. I am using POI jar Version 3.7, but getting error Invalid header signature; read -2300849302551019537 or in Hex 0xE011BDBFEFBDBFEF , expected ...
1
vote
0answers
110 views

POI moving data from a csv to xls

I am relatively new to Python and at the moment I am trying to finish this small piece I am currently working on. High-Level: Moving 2 columns of data from a .csv file to an .xls using POI with ...
0
votes
0answers
93 views

Printing empty Excel cells

Here's my code import java.io.FileInputStream; import java.util.Iterator; import java.util.Vector; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFRow; import ...
0
votes
1answer
94 views

convert xls to image

I am trying to create multiple and complex Table in PPT (not PPTX), si Im using POI Apache HSLF, The problem is that I have multiple kinds of tables with multiple headers sometimes, I think then to ...
0
votes
0answers
611 views

Apache POI full workbook copy

Have an issue with Apache POI (3.8 final release). My task: create some xls/xlsx files according data from basic xls/xlsx document. First of all, I try to copy some data (Cell, CellStyle and etc) ...
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 ...
1
vote
2answers
654 views

Export to XLS using POI

I want to export more than 200000 rows with 60 Columns from database to the client machine by using browser. I am using Servlet and POI 3 .8 version jars and below code. ServletOutputStream ...
1
vote
1answer
324 views

biff5 to biff8 conertation

my system uses apache-POI to manage some xls files. Now i've got almost 300 xls files, but it appears that they are in old format, so i got this exception: The supplied spreadsheet seems to be Excel ...
0
votes
1answer
904 views

Apache POI xls file error

I want to read both xls and xlsx file format. It is working fine for xlsx format but I am getting following error while uploading xls file. Code: try { FileInputStream fileInputStream = new ...
1
vote
1answer
709 views

Excel POI API changing cell value

I have to read a excel file and fill some cells with POI API for JAVA. The I write the whole workbook into another. That is actually working. The problem is that then (once the cells are filled) I ...
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 ...
1
vote
2answers
325 views

Why is this happening while writing an Excel in Java

Ok, basically i'm trying to write 3 columns and N number of rows simultaneously while iterating. The problem is that 2 of the 3 columns are written with the values... even though they appear in the ...
1
vote
2answers
705 views

Heap error while writing xls file with Apache POI

I am using Apache POI to create an excel[.xls] file. Now an excel can have 65535 rows & 256 cols. I am trying to write the java code to write the xls file with 65535x256 cells. I am getting a heap ...
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 ...
1
vote
1answer
3k views

Apache POI for Excel: Setting the cell type to “text” for an entire column

I need to generate an .xls (Excel) file, using the Java library Apache POI for spreadsheets. The file will contain a list of phone numbers in column A, formatted as "0221...." or "+49221..." - so ...
1
vote
1answer
2k views

How to get the max no. of columns filled in an XLSX file using POI?

I know we can get the max number of columns by iterating over all the rows and calling getLastCellNumber on each row object.. but this approach requires iterating over all the rows which I want to ...
4
votes
1answer
1k 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
503 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
369 views

Is it wise to use mocking in BDD test cases?

We are going to implement a small java application with BDD, which reads an MS excel sheet using POI of apache.org and prints some text based on that excel to the STDOUT. We agreed that the simplest ...
1
vote
1answer
633 views

How to groupColumn in .xlsx files using POI 3.6?

I recently switched from POI 3.1 (HSSF) to POI 3.6 (XSSF) and encountered a problem. The problem is that the groupColumn no longer works as expected! Does anyone know why the column grouping works ...
0
votes
0answers
488 views

Apache POI change format from xlt to xls [duplicate]

Possible Duplicate: POI: Using Excel templates I opened some xlt-file with Apache POI, changed it and saved it as xls-file. But if I open result xls-file with Excel and click File -> Save ...