Tagged Questions

8
votes
1answer
4k views

How can I create a simple docx file with Apache POI?

I'm searching for a simple example code or a complete tutorial how to create a docx file with Apache POI and its underlying openxml4j. I tried the following code (with a lot of help from the Content ...
3
votes
1answer
301 views

How to generate RSID attributes correctly in Word .docx files using Apache POI?

I have been using Apache POI to manipulate Microsoft Word .docx files — ie open a document that was originally created in Microsoft Word, modify it, save it to a new document. I notice that new ...
2
votes
2answers
524 views

How to print .doc and .docx in java

I just learned how to do some basic .doc and .docx manipulations ussing Apache-POI. And now what i want to do is try to print those documents from within my application. Any idea how can i do so? ...
2
votes
2answers
762 views

How can I use predefined formats in DOCX with POI?

I'm creating a docx generator with POI and would like to use predefined formats. Word includes several formats like Title, Heading 1..10 etc. These formats are predefined in every DOCX you create ...
2
votes
2answers
4k views

How to extract plain text from a DOCX file using the new OOXML support in Apache POI 3.5?

On September 28, 2009 the Apache POI project released version 3.5 which officially supports the OOXML formats introduced in Office 2007, like DOCX and XLSX. Please provide a code sample for ...
0
votes
1answer
570 views

Format table XWPFTable using Apache Poi

How can I format a table while creating docx file using Apache POI. I want to set the size of the cells, font of the text, color, etc.. I found this example, but the cell size is set according the ...
0
votes
1answer
257 views

How to copy a paragraph of .docx to another blank .docx using Java and retaining the formatting style

How to copy a paragraph of .docx to another blank .docx using Java and retaining the formatting style? Keeping alignment,font size,bold, italic,underline,font style and everything else preserved. ...
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 = ...