0
votes
1answer
54 views

how to set linespacing using docx4j api?

Blockquote Hi, I am trying to convert doc to docx using docx4j api.I need to set line spacing as required. Blockquote
0
votes
0answers
53 views

Set color text in doc file using apache poi

I used this code snippet to set color text in MS Word file CharacterRun r = paragraph.getCharacterRun(2).insertBefore("x"); r = r.insertBefore("y"); r.setColor(6); r.insertBefore("z); I want to set ...
0
votes
0answers
126 views

creating word doc with whitespace in POI HWPF

I am attempting to create the following string: This string has italics in the middle. However, when I create the document using HWPF I get the following which loses the whitespace around the italic ...
0
votes
1answer
909 views

Some HWPF POI document building examples

I'm looking for examples of building non-trivial Word (97-2003) documents with POI. I already reached to create one with "Hello World": package com.mygroup.myapp.poi.word; import java.io.File; ...
-1
votes
1answer
148 views

How to convert doc to txt file in android? [closed]

I am developing an android application, in which I want to convert a doc to a txt file. I searched and found that, Apache POI hwpf jar file is a possible solution. But, when I integrate jar file ...
-3
votes
1answer
254 views

the problems with read Doc or Docx file in java netbeans [duplicate]

Possible Duplicate: the problems with read Doc or Docx file in java I'm have a problems with programs read file word in java.Then I run programs,it's report error as ...
-2
votes
1answer
329 views

the problems with read Doc or Docx file in java [closed]

I am having this problem with reading a .doc or .docx file in Java: java.lang.NoClassDefFoundError: org/apache/poi/hwpf/HWPFDocument I don't understand why this is happening and would appreciate any ...
0
votes
0answers
478 views

Formatting text using Apache POI 3.8 (HWPF)

I am trying to insert the following text in the document using Apache POI 3.8: [Bold][Normal], but the output document has this: [Bold][Normal] The code: import ...
0
votes
1answer
804 views

Apache POI jar has no hwpf package

I have downloaded the poi api jar files from this link's first mirror link,which is suggested. After downloaded I saw that org.apache.poi.hwpf package is not present there. Actually my work is ...
0
votes
1answer
326 views

Apache Poi - how to remove all the links from Word Documents

I want to remove all the hyperlinks of a Word document and keep the text. I have these two methods to read word documents with doc and docx extensions. private void readDocXExtensionDocument(){ ...
0
votes
1answer
340 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 ...
1
vote
1answer
1k 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
1answer
331 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 ...
5
votes
2answers
3k 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 ...
1
vote
2answers
613 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 ...
3
votes
1answer
4k 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
3answers
3k 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: ...