Apache POI is a Java library for reading and writing various Microsoft file formats, especially Office related ones, based on OLE2 and OOXML, such as XLS and DOCX.
5
votes
0answers
351 views
Embedding HSSF(excel) into HSLF(ppt) using apache poi
I want to embed the excel sheet into presentation(PPT) using apache poi. how can we do this? If anyones knows, please help me.
2
votes
0answers
98 views
How to process old excel .xls files using POI?
I switched from jxl to poi since POI has more features. However, I wasn't able to process the xls files that were generated in the old format. Now I am getting this error:
...
2
votes
0answers
361 views
Error in writing to .doc file by Apache POI
I'm writing a app to display and edit file .doc I'm using POI with HWPF. Now I can read text from file and write to file .doc too. But my reader only read default file .doc which is created by ...
2
votes
0answers
262 views
Committed before 500,java.lang.IllegalStateException: Committed
what's the problem ? i am confused..
2012-12-01 09:51:29.689::WARN: Committed before 500 Unable to show problem report: java.lang.IllegalStateException: STREAM
2012-12-01 09:51:29.690::WARN: ...
2
votes
0answers
226 views
Redefine Named Excel Range then Save using Apache POI
Using Apache POI, I'm able to find a named range:
XSSFName[] ranges = new XSSFName[workbook.getNumberOfNames()];
for (int i = 0; i < _wb.getNumberOfNames(); i++)
ranges[i] = ...
2
votes
0answers
179 views
POI: How to validate empty cells in a range
I'm creating an Excel file where, once created and downloaded, a user isn't allowed to let empty cells in a specific column (because he will send it again with information he entered).
I'm using POI ...
2
votes
0answers
717 views
Get an image and its position from excel file using Apache POI
Is it possible to extract an image's information from an xls spreadsheet using Apache POI?
In one of my projects, I need to read some images from a .xls file. I can read all images together, but how ...
2
votes
0answers
215 views
JVM crashing while writing to XLSX file( POI)
JVM is crashing while trying to write to the .xlsx file. I am using POI(XSSF) for the same.
The error location point in code is the write method--> workBook.write(fileOutputStream);
On Console I ...
2
votes
0answers
141 views
A file reader webservice
I want to create a restfull webservice that reads Excel,MPP files and gives me a list of beans for my application. Currently we are using jxl for excel reading and mpxj for mpp. Is there any way i ...
2
votes
0answers
218 views
Section | Word using Apache POI
I would like to know if it is possible to block sections on Word using Apache POI.
and if anyone has any examples or tutorials that could help me.
Thank you very much. :)
2
votes
0answers
528 views
Apache POI - Docx output issue
I am evaluating apache poi as an option to write docx files. The specific thing I am looking for is to generate content in the docx file in different languages (hindi/marathi to be specific). I am ...
2
votes
0answers
519 views
Get picture position in Apache POI from docx-document
I read docx-document that contains text and some pictures.
I can call:
List<XWPFPictureData> pictures = xwpfDoument.getAllPictures()
But it returns list of all pictures in the document without ...
2
votes
0answers
314 views
Apache POI Update Custom Fields
I have successfully used IKVM.NET to create a .NET DLL for Apache POI, then used it successfully to update properties of a Microsoft Word 2003 document - the author and company and some custom fields.
...
1
vote
0answers
13 views
Missing Content in .xlsx files
So we have some standard .xlsx templates that when merged through Conga Composer, gives out an output .xlsx file. The problem is this output file is missing content from the original template file. ...
1
vote
0answers
18 views
How can I 'ignore' images when reading in a document with Apache POI?
When I read a document with Apache POI, even if I do nothing with images they are still read in.
Is there a way to 'skip over' the image reading part of the code? We have a lot of documents to read, ...
1
vote
0answers
60 views
Converting doc into PDF in android,Unable to execute dex
I am converting doc file into pdf format in android using following libraries,
itext-1.4.8.jar
poi-3.0-FINAL.jar
poi-scratchpad-3.2-FINAL.jar
here is my sample code
package ...
1
vote
0answers
30 views
Counting pages in a Word document
I'm trying to count pages from a word document with java.
This is my actual code, i'm using the Apache POI libraries
String path1 = "E:/iugkh";
File f = new File(path1);
File[] files = ...
1
vote
0answers
68 views
Reading different formats in the Excel (XLS) data from Apache POI 3.2
I am trying to read an XLS (2007 format) file using JDK 1.4 and Apache POI 3.2 .
I have few rows in the file already which are TEXT formatted (RIght click-> Format cells -> Text).
I added few more ...
1
vote
0answers
118 views
Apache POI java.lang.NoClassDefFoundError: Jboss 7.1.1
I am trying to deploy a jar application in Jboss Server 7.1.1 It is configured via maven and i have added all the dependencies in pom.xml.
<project xmlns="http://maven.apache.org/POM/4.0.0" ...
1
vote
0answers
154 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 ...
1
vote
0answers
44 views
How can I remove hyperlink in poi 3.8?
I have some problem with reading an excel file contains hyperlink text in poi.
Data is like that(excel file):
|1| type | category | job_type | position | name | email
|2| Test | developer | ...
1
vote
0answers
149 views
Apache POI JDK version
I was looking for examples on how to create an XML File in ANT for Java project using Apache POI library. I encountered this statement:
POI 3.5 and later requires the JDK version 1.5 or later. ...
1
vote
0answers
358 views
excel 2007 unreadable content using apache poi (.xlsx)
I'm having issue using the apache poi for excel 2007 utilizing the XSSF
I have two code snippets below (fat-fingered). The first seems to work, as the workbook opens correctly in excel 2007, and ...
1
vote
0answers
248 views
Convert .docx to .doc using Apache POI
I am poised with a problem of converting a docx file to doc. I am trying ways to do the same using OpenOffice and java, but no luck. So i need to know if this can be achieved using Apache POI.
1
vote
0answers
406 views
Creating excel file using using apache POI for download
I have create an excel file using apache poi. Everything is fine. Generally file gets download normally but 1 out of 10 times when i open the file directly from pop-up window (without saving), some ...
1
vote
0answers
107 views
Spring AbstractExcelView - set URL dynamically
The AbstractExcelView takes a URL which points to an Excel workbook to use (i.e. a template).
Rather than specifying this URL at container creation time, I would like to alter it dynamically. What ...
1
vote
0answers
42 views
Simulate start writting servlet response
We have a servlet that prints a server side generated Excel file to the response output stream. The Excel file is generated by a single method which returns the complete file in a POI Workbook object.
...
1
vote
0answers
242 views
How to create table in ms word doc with rowspan and colspan using apache POI?
I am using APACHE POI to create word doc containing table. The table looks like as follows, I want to create cells with rowspan and colspan(as shown in figure).
Is it possible using APACHE POI ?
...
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 ...
1
vote
0answers
90 views
Converting ms word 2007 using poi
What version of apache poi scratchpad can i use for both 2007 and 2003 format.Now am using poi-scratchpad-3.8 but it has only methods to convert doc file to html,pdf etc.But i need to use docx also ...
1
vote
0answers
170 views
Using Apache POI XSSFWorkbook, how can I refresh all formula cells at once?
Please have a look on this issue :
I'm loading a large .xlsx file with size say 5MB & having about 30 sheets using Apache POI & putting values to some cells. But after writing all data to a ...
1
vote
0answers
149 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 ...
1
vote
0answers
168 views
Apache POI - Read and store Rich Text content in DB
We have a new requirement in our java application where user’s would upload an excel file.
One of the column in the excel file will be formatted with bold, italics, bullet points, colored text etc.
...
1
vote
0answers
183 views
File upload issue at struts action testing
I would like to setup unit tests over struts actions which are processing Excel sheets uploaded from web form.
I picked strutstest library and used it together with cactus framework.
Cactus doesn't ...
1
vote
0answers
145 views
How to use custom fonts with XWPFRun in apache poi api for java
how to use custom fonts with XWPFRun in apache poi api for java
http://poi.apache.org/apidocs/org/apache/poi/xwpf/usermodel/XWPFRun.html
setFontFamily uses system fonts how can use fonts from ...
1
vote
0answers
282 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 ...
1
vote
0answers
167 views
Efficient way (using apache POI) to read an XLSX, replace the first row and write the result?
It seems the best option is to use the XSSF and SAX (Event API) but the docs aren't really that good and I can't find a simple example for my needs:
I need to read a XLSX file, read the first row and ...
1
vote
0answers
369 views
Memory leak using Apache POI WordToHtmlConverter
I am using Apache POI library to convert .doc file to .html file in my Java EE project (run at Apache Tomcat 7.0.32).
I took as a basis WordToHtmlConverter.java class from package ...
1
vote
0answers
259 views
Calculating the value of a recursion formula in EXCEL using POI
I have an EXCEL Spreadsheet that has many computations some including recursive formula's (perfectly fine in excel which computes these with no problem).
I'm using version 3.8 of the Apache Poi API ...
1
vote
0answers
283 views
Using Apache POI WordToHtmlConverter to get the text of a document
I have some software that is converting a Word Document to HTML. What I need is a way to get just the text of the document. Below is a sample of my code. When the doc is converted to html it seems ...
1
vote
0answers
94 views
apache poi set data source in a word document
Is it possible to set external data sources in word documents using the apache poi libraries?
I could not find anything specific to external data sources.
1
vote
0answers
53 views
How to calculate location of the shape in Excel 2007?
I need to export a few shapes into excel file. I using Excel 2007.
I would like to put a rectangle shape on given x and y points. I don't understand how the XSSFClientAnchor class works. How to ...
1
vote
0answers
502 views
Is there any way to get the position of image w.r.t. text in .docx with text wrapping other than inline in ooxml?
When an image is placed in a word 2007 document with text wrapping other than 'inline', the position of the image with respect to text is not reflected in the document.xml. Only I am able to get the ...
1
vote
0answers
239 views
how to set watermark image at background in excel using poi
i am using the following code to set water mark in the excel sheet, i also get the water mark but instead of showing the watermark at the back round it shows the water mark at foreground.
how to ...
1
vote
0answers
76 views
Java POI, Does palettes work with SS model?
Im doing a conversion to the ss model.
Before I was doing something like this:
HSSFPalette palette = wb.getCustomPalette();
//replacing the standard red with freebsd.org red
...
1
vote
0answers
99 views
Implementing a distributed database system using Microsoft Excel (back-end) and JSP (front-end)
i am working on a project which is in short a distributed database project.
**Requirements**
module 1:
1) Read and update an excel sheet using an excel sheet which already contains some data.
...
1
vote
0answers
233 views
how to get a field name in poi's hwpf
After i retrieve a field, how can i know its' name?
HWPFDocument doc = new HWPFDocument(new FileInputStream("resource/template.doc"));
Fields fields = doc.getFields();
List<Field> ...
1
vote
0answers
293 views
MS Word Styled Tabled using Apache POI
I'm working on a small project where I need to create a dynamically produced table in MS word using Java. I've been fiddling around with Apache POI, and while i'm fairly certain this is the right API ...
1
vote
0answers
197 views
How to hide text in Word Document using Apache POI library
Is it possible to hide text in MS Word Document using Apache POI library? If yes, please let me know how. I am able to create and read the document using POI library. Is there any way to hide some ...
1
vote
0answers
338 views
Read MANDARIN From Excel using JAVA POI api
I need to read MANDARIN language data from excel file to persist it in the database. But the Unicode characters are breaking.
I am doing the below stuff.
FileInputStream myInput = new ...

