Tagged Questions
0
votes
0answers
15 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
0answers
27 views
Using poi to export word document
The objective is I need to replace some words in the template and then export it.
Everything goes fine with replacing the content, but the final output is a single word document but it has divided ...
1
vote
1answer
625 views
Add Footer(with Image) to Word Doc using POI API
I'm facing the following situation and problem:
I have to retrieve an existing .doc/.docx file and modify it by adding a footer for every page of the document containing an image and some text. I've ...
2
votes
1answer
666 views
Apache POI fails to save (HWPFDocument.write) large word doc files
I want to remove word metadata from .doc files. My .docx files works fine with XWPFDocument, but the following code for removing metadata fails for large (> 1MB) files. For example using a 6MB .doc ...
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
2answers
453 views
Best practice generating word and powerpoint documents using Java
I have a word document in the format of a docx, created in Word 2007. I need to open this document and at certain places in the document add Text, Images and tables.
I also need to do the same thing ...
1
vote
0answers
235 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> ...
0
votes
0answers
209 views
Insert hyperlink into word (.doc) using POI
Hi I am using POI to create some word documents.
I noticed that working with excel i can use org.apache.poi.hssf.usermodel.HSSFHyperlink for hyperlink objects.
Does anyone have any idea how 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. :)
0
votes
0answers
287 views
Saving poi document correctly
I have initilized code as:
POIFSFileSystem poifs = new POIFSFileSystem(fileInputStream);
IOUtils.closeQuietly(fileInputStream);
HWPFDocument hwpfDocument = new ...
2
votes
1answer
535 views
java poi getting wrong column count when reading MS Word tables
I'm using poi to read tables from MS Word 2003.
The tables in doc file has 4 columns and 100 rows,the fourth column could be empty,the others could't.When iterating each row to get column count,some ...
0
votes
1answer
456 views
Apache POI extract hyperlinks from word document
Anyone knows how to extract links from word documents using Apache POI? Or even better, from a paragraph?
0
votes
0answers
154 views
Using java to get revision information in MS-Word 2007
Is there some java library can get revision information in MS-Word 2007 ?
Apache POI is the well known java tool for MS Office document, but no API found for getting revisions.
Geln
0
votes
1answer
428 views
Upload word document
I need to extract text from the word document uploaded by the user. I got the code to extract words from a document located on my m/c. But my requirement is to allow users to upload their own document ...
0
votes
3answers
607 views
Java API for converting MS Word file with fields, and start-up macro to PDF
I have a word file () which has many text fields and a startup macro, which, when word file is opened sets, values to fields from file properties ?!
So basically, I need API that can convert MS word ...
0
votes
1answer
4k views
Apache POI: Replace paragraph text
I am using Apache POI to generate docx files from a template. There doesn't seem to be an obvious way to replace all text in a paragraph and the documentation is pretty scarce. Right now I am able to ...
