Tagged Questions
0
votes
0answers
20 views
Error exporting Excel worksheets after upgrading to Apache POI 3.9
We are doing an changes in our application for converting the file extension from xls to xlsx format (2007 and above), while exporting the file from the application.
I have made necessary code ...
0
votes
0answers
18 views
How to print a Workbook file made using Apache Poi and java?
I create one page workbook files in eclipse and need to open the print dialog box and print these files off. I understand how to open the print dialog box and everything, i just can't find how to tell ...
0
votes
0answers
17 views
How to set sheet margins in MSWord document using APACHE POI?
I am trying to make write a document using Apache POI using a XWPF Document as a root.
the problem is that i cannot set sheet margins in it.
maybe someone knows the answer?
0
votes
2answers
37 views
Apache POI- SXSSFWorkbook - Block a row from flushing
I have a scenario where i am creating a very large xlsx files using SXSSF workbook(around 1-2 million).
While writing to the sheet , i have to dynamically populate some values say Headers only in ...
0
votes
0answers
22 views
Is it possible to merge two xlsx files via apache poi
I am able to write a xlsx file via apache poi, but don't know how to merge....
two files via poi.Please provide necessary steps to be taken for merging..
File fileCommon = new File(fileName);
...
0
votes
0answers
13 views
Autofilter in apache POI range not working
Does anyone know what could be wrong with the following filter I am trying to set for a report generated with apache POI?
I'm using this code:
sheet.setAutoFilter(CellRangeAddress.valueOf("A4:A6"));
...
-6
votes
0answers
24 views
List conversion for apache poi [closed]
I'm new to Apache POI. and I'm trying to export List< EmployeeInfo > into an Excel file.
This List contains emp name, id, address, etc.
What are my options to convert Employee List and ...
-1
votes
1answer
20 views
Apache POI removing picture from template when setting auto filters on columns
Using Apache poi 3.7 HSSF package to generate xls file from a template. The template xls has png picture. After calling HSSFSheet.setAutoFilter method the picture is disappearing in the generated xls.
...
1
vote
1answer
33 views
I can not find for the source code repository for poi-ooxml-schemas
Alright, this is a little bit wierd. I've checkout apache-poi version 3.9 source code from
http://archive.apache.org/dist/poi/release/src/
But I can not find the source code for poi-xml-schemas. I ...
0
votes
0answers
29 views
Android: Apache POI Excel Create Force Closes
Good Day Everyone,
I have been reading up now for days on how to use the Apache POI within Eclipse but with no luck.
I get no error on my code but when I click the button to create the XLS file my ...
0
votes
1answer
30 views
POI,color row not working
shouldn't this be working? fac is the uncolored workbook and facsheet is its uncolored sheet
sheet is the colored sheet,i'm trying to get the color from the workbook of one and set them into the ...
0
votes
1answer
25 views
The class org.apache.poi.hssf.record.MulBlankRecord needs to define a clone method, OFBIZ and Apache POI
complete error message here:
The class org.apache.poi.hssf.record.MulBlankRecord needs to define a clone method
(The class org.apache.poi.hssf.record.MulBlankRecord needs to define a clone method)
...
0
votes
1answer
14 views
is it possible to insert a cloned sheet to a different workbook? APACHE POI
i'm not sure if my question is a bit silly but once I clone a sheet from an existing workbook, how do I "IMPORT" it to another workbook? or is that the way is it supposed to work? API said that it ...
0
votes
0answers
31 views
How can I set the position for images with apache poi XWPF
I started to work with Apache POI's libraries this week, and I want to test them, so everything is alright but I can't achieve set the position for one picture.
Now I have this code:
...
0
votes
0answers
81 views
Apache POI-HSSF Distorts Image Size when Adding Picture into Excel Cell
I am adding a picture into a cell using Apache POI-HSSF. The image is 120x100 but no matter what I do and how I resize it, the Excel spreadsheet always shows it spanning multiple rows and distorts it ...
0
votes
1answer
59 views
Getting image size from XWPF document (Apache POI)
anyone had experience parsing docx file with Apache poi?
while extracting image from CharacterRun using
paragraph.getRun().getEmbeddedPictures();
I was not able to find a way to get scaling or/and ...
0
votes
0answers
43 views
Parse intersecting name ranges with POI
I have problems to parse formulas which contain intersecting name ranges with apache-poi.
For example if I try to parse a formula like "=SUM((Total_Cost!Jan):(Total_Cost!Apr_))" where Total_Cost, Jan ...
1
vote
2answers
76 views
Reading Apache POI file and persisting via JPA but persistance of entities does not happen until the end of method
Hi im trying to keep track of my Apache POI reading an excel file an importing to the database. I am persisting the imports progress (% Progress,time etc) to a separate table in the database so i can ...
0
votes
0answers
122 views
android using apache poi to create .xls file
i'm using Apache POI in android to create an .xls file, using a linux pc(incase that matters). I am following this tutorial ...
0
votes
0answers
120 views
Can't get Apache POI autosizeColumn() to work right
Ok so I know you have to add the autoSizeColumns() method after you enter all your data into the sheet and workbook. And that is what I am doing but it is only resizing to the width of the last Cell ...
0
votes
0answers
57 views
How to Determine Merged Cells in a Certain Row
Here's what I know so far:
You use the method sheet.getNumMergedRegions() to get the number of merged regions in a particular sheet
You loop through each count and use the method ...
0
votes
2answers
443 views
Apache POI autoSizeColumn() not working right
I am creating a program that writes information to an excel file using the apache poi. After I enter all of my data into the file I call the autoSizeColumn method on every column of the file. But it ...
1
vote
0answers
162 views
Improve the speed of reading and persisting Apache POI excel file
I have an excel file i am currently able to import into a mySQL database but i would like to increase the speed of import somewhat. My set up for reading the excel files (approx 40,000 rows in each ...
0
votes
3answers
80 views
workbook.createSheet() method not recognized in IDE using apache POI
I am trying to learn apache poi but the method workbook.createSheet() seems to be not recognized by the IDE. reviewing the suggestions that are there, many methods are available for the workbook ...
0
votes
0answers
27 views
Apache poi created file size is not parsable by apache poi api
I am writing an excel file using apache poi api .But again when i am going to read the data of the same excel file by using apache poi api.The file seems to be not parsable .I am using excel import ...
0
votes
0answers
101 views
Apache POI in Android - awt dependency
Im trying to insert image to xls file using Apache POI in Android.
Its rather simple (example) but its using java.awt package to work with images, and last method
drawing.createPicture(anchor, ...
0
votes
1answer
100 views
apache POI createFormulaListConstraint results in “Unreadable content” when opening excel
Like the title says: when I try to add a DataValidationConstraint using XSSFDataValidationHelper's method createFormulaListConstraint("...") the excel file's content is incorrect according to the ...
-1
votes
1answer
534 views
JXL VS Apache POI [closed]
I am new to Java. Can any one tell which is the best API's for processing excel sheets. What is the drawbacks and advantages of both API's.
0
votes
1answer
280 views
How can I add the Apache POI Library in Eclipse - for Selenium Webdriver project?
I need to add the apache poi to my project (I need hssf, ss and xssf). I downloaded a jar file from the internet but it does not contain xssf. I went to http://poi.apache.org/ and I downloaded this: ...
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 ...
-2
votes
1answer
214 views
How to append or update excel sheet in Java using Apache POI [closed]
i am using two dimensional array ie exceldata having first column as category and second column for data and then i write the excel file but only last row is written into excel sheet
1
vote
2answers
63 views
Is there any library that conver from XSLX file to CSV? [duplicate]
Is there any library that converts from XSLX file to CSV?
XSLX file generated using apache poi
If not, anyone developed a useful method for this?
Thanks
0
votes
1answer
391 views
Insert a line break inside a paragraph in XWPFDocument
I am writing values into a word template using apache poi 3.8. I replace specific strings in a word file (keys) with required values, e.g. word document has a paragraph containing key %Entry1%, and I ...
0
votes
1answer
351 views
Upload Excel file into database using Apache POI and Spring framework
Couldn't find a good post on the internet to help me with this.
My requirement is to read each row from a spreadsheet, and generate a sql statement with values from the cells and do a batch upload ...
0
votes
1answer
54 views
Apache POI NoSuchFieldError on setcellformula
I have an environment where apache poi 3.7 is deployed and getting following error on server
Exception occurred: java.lang.NoSuchFieldError: instance
at ...
0
votes
1answer
78 views
Excel sheet not shifting more than a limited rows
I have an excel template in 'sheet' variable. I need to add database values into new rows as shown. I used functions from apache poi to edit the excel file.
sheet.shiftRows(RowId, ...
0
votes
2answers
241 views
How to get the value of a cell at a specified position in an excel sheet using JAVA
How to get the value of a specific cell from a .xlsm file using java ..??
I want to fetch the cell value by specifying the particular row and column for example i need the cell value at row 1 and ...
1
vote
3answers
2k views
reading excel file --> xlsx format with java
I'm trying to read an excel file (xlsx NOT xls) but without any luck.
I tried the jexcel api but it doesn't support xlsx extension, then I tried the Apache api which need to work and tried also the ...
0
votes
1answer
49 views
Apache POI exits without throwing exception
First of all, the code below has worked without problems for a while now.
I receive excel files from a colleague, which I read and upload with this program.
Recently the colleague was replaced, and ...
2
votes
1answer
130 views
POI SS UserModel Performance
When using SS UserModel to parse xls files, whats the difference in performance compared to HSSF?
1
vote
1answer
159 views
How to IKVM Apache POI
I want to use Apache POI in my .NET application, I know there is a port NPOI but it's not complete and don't have PowerPoint related functionality.
I've tried to IKVM it by using the following ...
0
votes
1answer
584 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
348 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
232 views
Need help in replacing contents of microsoft 2007 (HWPFDocument) document using apache poi
First of all i m feeling its not very easy to use Apache POI API, as like any other java API's because i am confused which are all jar files needed in case of modifying contents of docx for this i am ...
0
votes
4answers
166 views
Export to excel and pdf is not working after deploying .war file on Apache-tomcat
Hii Guys !!
I made a web application in which i have given two buttons to export data into .excel and .pdf format .I added following jar file itext 2.1.0.jar,poi 2.5.1,poi scratchpad ...
1
vote
0answers
150 views
Apache POI - Word Files
I have been successfully able to read a word document containing images usiong POI.
I have even be able to extract a section from Word document including the images.
I am writing the extracted ...
0
votes
1answer
269 views
apache POI opening docx file failure
I tried to get Doc/Docx Text content . it seems that apache POI do that . i included the dependencies in pom.xml . I tried many code samples like this :
File docFile1=new ...
0
votes
1answer
505 views
How to get Excel cell font color RGB using Apache POI?
getStyle().getFont(workbook).getColor() returns a short. How do I get RGB value of the color?
BTW,
palette.getColor(style.getFont(this.book).getColor()).getTriplet()
does not always work (null ...
1
vote
0answers
285 views
APACHE POI - cloneStyleFrom doesn't copy BorderStyle
I've a problem with the library apache poi, i want to copy the style of a cell and to do this i use the function cloneStyleFrom() and all works good except the copy of borders style. I don't ...
0
votes
1answer
103 views
Apache POI : easy way to compare worksheets?
I need to compare two worksheets with Apache POI. Is there an easy way to do this, for instance a worksheet compare function, or must I compare each cell?

