Tagged Questions
1
vote
1answer
1k views
Apache POI HWPF, replacing text in .doc documents fails
I try to write down the result of the POI unit test at: code here, by adding the line
daDoc.write(new FileOutputStream("C:\\wordtest.doc"));
to the end of the method testRangeReplacementAll. The ...
0
votes
0answers
54 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
68 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
156 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
340 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
2answers
2k views
How to Extract docx (word 2007 above) using apache POI
Hai, i'm using apche poi 3.6
I've already created some code..
XWPFDocument doc = new XWPFDocument(new FileInputStream(file));
wordxExtractor = new XWPFWordExtractor(doc);
text = ...
0
votes
1answer
2k 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 ...
0
votes
1answer
697 views
Updating values of custom properties in word doc using java
I am not able to update value of a custom property in a word document using java.
I have a word document which contains a custom property with value 'stack'. Using java I want to change that value to ...
0
votes
1answer
338 views
Is there a way to modify a Microsoft Word footer using Apache POI?
I need to modify the content of a Word footer using a Java API.
The Apache POI project does not seem to support this functionality:
WARNING - you shouldn't change the headers or footers, as ...