Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
1k views

Apache POI HWPF - problem in convert doc file to pdf

I am currently working Java project with use of apache poi. Now in my project I want to convert doc file to pdf file. The conversion done successfully but I only get text in pdf not any text style or ...
2
votes
1answer
3k views

Java: parsing ms-word document using POI/HWPF

I have a ms-word document (MS-Office 2003; non-xml). Within this document there is a string associated with a bookmark. Furthermore, the word document contains word-macros. My goal is to read the ...
1
vote
1answer
255 views

How to create HWPF document with apache poi

Please somebody help me with putting text into paragraphs. I have this code : private void createDOCDocument(String from, File file) throws Exception { POIFSFileSystem fs = new ...
0
votes
0answers
64 views

Cells spanning table rows/columns with Apache POI HWPF

I am using HWPF Api to generate .doc format. I want to give rowSpan and colSpan to table or merge cells. I made it for .docx with docx4j Api. But I did't find a solution for .doc . Is there any way ...
0
votes
1answer
64 views

Extracting Apache POI HWPF Hyperlinks

HYPERLINK "target"label How can i extract hyperlinks from a HWPF document? I can get paragraphs from the doc file and extract the correct styling if necessary, i.e. bold, italic etc. But how would i ...
0
votes
1answer
188 views

getTableLevel() method of org.apache.poi.hwpf.usermodel.Paragraph

I am trying to modify the existing code which converts MS word documents to text using apache POI. I am new to this Apache POI API. There is GetTableLevel() method of ...
0
votes
2answers
379 views

Apache POI HWPF Nested Lists?

I used the following code to read list structures from a word file using hwpf. My question is how to read a list structure that is nested ie a list within a list within a list and so on. if (p ...
0
votes
1answer
367 views

Java MS Word libarary

I've document and I want to change all template parameters like {name}, {address} to my own values. I tried to use POI HWPF Library, but I lost document formatting after saving. Even when I open my MS ...
0
votes
3answers
2k views

How to use Apache HWPF to extract text and images out of a DOC file

I downloaded the Apache HWPF. I want to use it to read a doc file and write its text into a plain text file. I don't know the HWPF so well. My very simple program is here: I have 3 problems now: ...