Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Word document creation API in Java

I would like to create a word document using a template, replace some variables (fields) and save it as a new word document.

I was thinking using Apache POI, http://poi.apache.org/ is it the best for this purpose? can you share your impression from it?

like image 404
Eran Medan Avatar asked Jan 02 '10 08:01

Eran Medan


4 Answers

I've worked with POI before and it's certainly able to generate Word documents. But the devil is in the details.

Word has thousands of features: You can put numbered lists starting at #13 with negative indents into two joined cells of a table included in another table that is itself part of a bullet list... you get the idea. When the POI documentation says they are a work in progress, that reflects what will probably be an eternal state of trying to catch up to the (to us, undocumented) specification of Word.

Documents with a reasonably "normal" set of used features are well supported by POI, whose interfaces and methods are reasonable and consistent but sometimes require a bit of work. But as Pascal says, documents with a not too exorbitant set of features are also supported by RTF. I have almost no experience "doing" RTF but it's probably a bit simpler than working with POI.

If you're working in an environment or for a customer who insists that your produced documents be .DOC rather than .RTF, then POI is pretty much your only choice, unless you can introduce a step where you use a bit of Office automation to convert RTF into DOC.

Update: I've had a couple more ideas in the meantime.

Using POI or creating RTF documents is something that you could do on practically any platform. At my job, all servers doing processing like this happen to be running Linux, for example.

However, in the likely case that your programs will run under Windows, there is another alternative: Jacob http://www.land-of-kain.de/docs/jacob/

Jacob is a COM interface for Java; it essentially allows you to "remote control" Windows programs such as Word and Excel. The document I linked to above is not to Jacob's own site but to a single page with "cookie cutter" recipes for using Jacob. The project itself is on SourceForge: http://sourceforge.net/projects/jacob-project/ But people claim, and rightly so, that the documentation is a bit lacking.

Jacob has the advantage over all other solutions that you're dealing with the "real" Word and therefore all capabilities of Word are available to you. This would be an alternative if there are detail aspects of your document that just can't be handled with POI or via the RTF format.

like image 94
Carl Smotricz Avatar answered Oct 27 '22 04:10

Carl Smotricz


This is obviously way too late, But since 2013 there is a much better, more flexible solution to word document creation.

http://www.docx4java.org/trac/docx4j

I have had much more luck with docx4j than I ever did with POI.

like image 26
Yonkee Avatar answered Oct 27 '22 04:10

Yonkee


I'm not sure of the exact status of the Word documents support in POI but, according to the POI website, work is still in progress (can't say what this mean exactly). So, at this time, I would not use POI but rather try to generate a RTF document. For this, you could :

  • Use RTFTemplate which is a RTF to RTF Engine that can generate RTF document as the result of the merge of a RTF model and data.
  • Use iText which is primarly a PDF generator but can also generate RTF.
  • Build your own custom solution (but I wouldn't do that).

I'd go for iText.

like image 29
Pascal Thivent Avatar answered Oct 27 '22 04:10

Pascal Thivent


If you use a template, and do not want to create the word document from scratch, for what I know, POI is a pretty good solution. You open the template and select the zones you want to replace.

They say POI is still is developpement, but I've been using it in production environnement and it works pretty good at the moment.

like image 29
Valentin Rocher Avatar answered Oct 27 '22 06:10

Valentin Rocher