Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 Assist, thanks Eclipse!) but the code does not work correctly.

String tmpPathname = aFilename + ".docx";
File tmpFile = new File(tmpPathname);

ZipPackage tmpPackage = (ZipPackage) OPCPackage.create(tmpPathname);
PackagePartName tmpFirstPartName = PackagingURIHelper.createPartName("/FirstPart");
PackagePart tmpFirstPart = tmpPackage.createPart(tmpFirstPartName, "ISO-8859-1");

XWPFDocument tmpDocument = new XWPFDocument(tmpPackage); //Exception
XWPFParagraph tmpParagraph = tmpDocument.createParagraph();
XWPFRun tmpRun = tmpParagraph.createRun();
tmpRun.setText("LALALALAALALAAAA");
tmpRun.setFontSize(18);
tmpPackage.save(tmpFile);

The thrown exception is the following:

Exception in thread "main" java.lang.NullPointerException
    at org.apache.poi.POIXMLDocumentPart.read(POIXMLDocumentPart.java:235)
    at org.apache.poi.POIXMLDocument.load(POIXMLDocument.java:196)
    at org.apache.poi.xwpf.usermodel.XWPFDocument.<init>(XWPFDocument.java:94)
    at DocGenerator.makeDocxWithPoi(DocGenerator.java:64)
    at DocGenerator.main(DocGenerator.java:50)

Does anybody can help me with my (really simple) requirements?

share|improve this question

1 Answer

up vote 11 down vote accepted

Here is how you can create a simple docx file with POI :

XWPFDocument document = new XWPFDocument();
XWPFParagraph tmpParagraph = document.createParagraph();
XWPFRun tmpRun = tmpParagraph.createRun();
tmpRun.setText("LALALALAALALAAAA");
tmpRun.setFontSize(18);
document.write(new FileOutputStream(new File("yourpathhere")));
share|improve this answer
Can we please delete this question? It's too embarassing... Thanks Valentin! – guerda Apr 7 '10 at 13:34
haha don't worry, there's plenty of sillier questions here (and POI is not really that easy to use) – Valentin Rocher Apr 7 '10 at 14:33
It just helped me out, while I wasn't having your error, it's a great Google search result for a very simple example of using POI. – altCognito Nov 3 '10 at 13:50
For me it doesn't work, it produces a document with screwed encoding. No matter if the stream is UTF-8 or cp1250, the document in LibreOffice (OpenOffice) isn't decoded properly – Sloin May 26 '11 at 14:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.