2
votes
1answer
39 views

Open a File within an EJB

I know that it is in general not allowed to access local Files (with java.io) within an EJB: nevertheless, I have an EJB which has to open an Excel File and edit it using the apache.poi library. If I ...
0
votes
0answers
19 views

apache poi HSSFChart createSeries() returns null

I am working with apache poi v3.9 to generate excel reports. The reports contain charts. Given the fact that Apache Poi does not create charts, I had to use a template with a sheet that contains the ...
0
votes
0answers
45 views

Creating Comments On a Word Document(.doc) using Apache POI

I am trying to create word document(.doc) comments using Java. I went through Apache POI Library, but it was only supporting comments extraction. Is there any way that I could create word document ...
0
votes
1answer
64 views

Setup POI in Eclipse EE for my servlet (on Mac)

I have downloaded Apache POI which include several .jar files. I want to use it for my servlet (developing with Eclipse EE version). I have added all .jar files in my "lib" folder and added them to ...
0
votes
1answer
60 views

Can we use printwriter with Apache poi worksheet

I am creating a workbook and trying to download the same. The issue I am facing I am when I use the workbook.write(outputstream), it seems both outputstream and printwriter will not work together and ...
0
votes
0answers
201 views

Apache Poi appending data in excel adjacent to columns

i have a list of objects (every object contains one string and another list of objects(this object contains two string) i need to append data into into excel sheet using apache poi api List ...
0
votes
4answers
1k views

Out of Memory Error - Java Heap Space while writing to Excel

I have a data of almost 100,000 records and I am trying to write the data to .xlsx file using XSSFWorkbook through Java code. I am able to fetch all the data from database to an ArrayList. By ...
1
vote
4answers
166 views

Maven Dependancy Refereing old Poi Version

I am using Apache Poi version 3.8 in my POM. But it is still downloading poi-3.2 along with poi-3.8 as (may be) due to some internal dependency. The strange behavior for me is My project using poi-3.2 ...
0
votes
1answer
129 views

right to left with apache poi

i'm using apache poi to modify some existing rtf files and return a copy to the client in a web application the issu with me is when i try to replacesome text and insert another wich is in arabic ...
0
votes
1answer
2k views

Read excel file 2010 apache poi ignoring empty cells

I am having an problem, while java application reading Excel file .xlsx extention, The application is working normally, but in the workbook has many sheets, 1, 2 sheets reading correctly , but when ...
1
vote
4answers
1k views

exception while reading Excel file with apache poi

Problem reading Excel 2007 file .xlsx file extention, while I am trying to read with apache poi: InputStream file = new FileInputStream(C:\\test.xlsx); ---> XSSFWorkbook workbook = new ...
1
vote
0answers
312 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 ...
3
votes
2answers
362 views

How to delete blank rows in between the sheet using poi?

I want to delete blank row from Excel sheet using poi. We have method like shiftRow() or removeRow() but its not for use in this case. Please help me to get it done.
0
votes
1answer
316 views

Apache POI + RichFaces 4 - docx Filename

I'm using Apache POI to generate document with .docx extension. I set the file name in the header response (HttpServletResponse), but the browser saves a file with same name at the end of my URL, ...
-4
votes
1answer
67 views

what's the mean of “This is in 1/20th of a point.”? [closed]

this is in the apache POI export Excel document ,I Don't know this sentence mean "This is in 1/20th of a point."; who can help me! I know in this sentence "1/20th" th is length unit,but I Don't know ...
0
votes
1answer
2k views

Dynamically creating rows in Excel sheet with Apache POI

I'm writing a program to read a large xml file and create an excel file from it. The attributes of each node will be the column headers in excel file. I created a Dom object and got the nodelist. I ...
-1
votes
1answer
332 views

I Want to Export to Excel dynamic Html table in java [closed]

I Want to Export to Excel dynamic Html table in java using apache poi
0
votes
2answers
541 views

copy Problem in changing csv to xls in java

I m very new in this blog and also in IT field.I ve a problem in copy the values from a csv file to existing a xls file.I am using Apache POI. I ve two csv files and two existing xls file output0.xls ...