vote up 7 vote down star
8

I have a new app I'll be working on where I have to generate a Word document that contains tables, graphs, a table of contents and text. What's a good API to use for this? How sure are you that it supports graphs, ToCs, and tables? What are some hidden gotcha's in using them?

Some clarifications:

  • I can't output a PDF, they want a Word doc.
  • They're using MS Word 2003 (or 2007), not OpenOffice
  • Application is running on *nix app-server

It'd be nice if I could start with a template doc and just fill in some spaces with tables, graphs, etc.

Thanks for the help.

Edit: Several good answers below, each with their own faults as far as my current situation. Hard to pick a "final answer" from them. Think I'll leave it open, and hope for better solutions to be created.

Edit: The OpenOffice UNO project does seem to be closest to what I asked for. While POI is certainly more mainstream, it's too immature for what I want.

flag

14 Answers

vote up 6 vote down check

In 2007 my project successfully used OpenOffice.org's Universal Network Objects (UNO) interface to programmatically generate MS-Word compatible documents (*.doc), as well as corresponding PDF documents, from a Java Web application (a Struts/JSP framework). OpenOffice UNO also lets you build MS-Office-compatible charts, spreadsheets, presentations, etc. We were able to dynamically build sophisticated Word documents, including charts and tables. We simplified the process by using template MS-Word documents with bookmark inserts into which the software inserted content, however, you can build documents completely from scratch. The goal was to have the software generate report documents that could be shared and further tweaked by end-users before converting them to PDF for final delivery and archival. You can optionally produce documents in OpenOffice formats if you want users to use OpenOffice instead of MS-Office. In our case the users want to use MS-Office tools. UNO is included within the OpenOffice suite. We simply linked our Java app to UNO-related libraries within the suite. An OpenOffice Software Developer's Kit (SDK) is available containing example applications and the UNO Developer's Guide. I have not investigated whether the latest OpenOffice UNO can generate MS-Office 2007 Open XML document formats.

The important things about OpenOffice UNO are:

  1. It is freeware
  2. It supports multiple languages (e.g. Visual Basic, Java, C++, and others).
  3. It is platform-independant (Windows, Linux, Unix, etc.).

Here are some useful web sites:

link|flag
This is news to me. Thanks for the info! – Bill James Nov 5 '08 at 18:57
So far, this is the most compatible with the toolset I asked for. I'm going to mark it "accepted". Though I fully recognize that POI is more mainstream, it just doesn't have the functionality I want yet. – Bill James Nov 4 at 22:47
OOo Java API's are relatively unknown. Unfortunately. – BalusC Nov 5 at 14:50
vote up 12 vote down

I think Apache POI can do the job. A possible problem depending on the usage your aiming to may be caused by the fact that HWPF is still in early development.

HWPF is the set of APIs for reading and writing Microsoft Word 97(-XP) documents using (only) Java.

link|flag
I've used this successfully on my production app. – Allain Lalonde Oct 14 '08 at 23:41
Any knowledge of graph and table possibilities? How about tables of contents? Anyone have real experience doing those things in POI? – Bill James Oct 15 '08 at 1:15
Looking at the documentation for POI, it seems this HWPF is very early in development, mainly allowing for reading text out of a .doc, not really for dynamic creation of "complex" documents. – Bill James Oct 15 '08 at 1:18
I don't believe it handles the more complex graphs/tables etc. – Brian Agnew Aug 3 at 15:35
vote up 2 vote down

You can use a Java COM bridge like JACOB. If it is from client side, another option would be to use Javascript.

link|flag
Thanks, but it looks like this would require running on a windows machine, no? I clarified the host machine OS after reading this, but thanks for the info. – Bill James Oct 15 '08 at 1:34
vote up 1 vote down

I've used Aspose.Words to do mail merge in .NET. I believe that they also have a Java version.

link|flag
vote up 1 vote down

There's a tool called JODConverter which hooks into open office to expose it's file format converters, there's versions available as a webapp (sits in tomcat) which you post to and a command line tool. I've been firing html at it and converting to .doc and pdf succesfully it's in a fairly big project, haven't gone live yet but I think I'm going to be using it. http://sourceforge.net/projects/jodconverter/

link|flag
vote up 0 vote down

I have developed pure xml based word files in the past - i used .net, but the language should not matter since its truely xml - it was not the easiest thing to do (had a project that required it a couple years ago) - These do onlonly work in 2007 or above - but all you need is microsofts white paper that describe what each tag does - you can accomplish all you want with the tags same as if you were using word (of course a little more painful initially)

link|flag
vote up 0 vote down

After a little more research, I came across iText, a PDF and RTF-file creation API. I think I can use the RTF generation to create a Doc-readable file that can then be edited using Doc and re-saved.

Anyone have any experience with iText, used in this fashion?

link|flag
vote up 0 vote down

Yet another possibility, since this is a web app.

I was able to render an HTML page with the MIME type set to "application/msword", which caused the browser to spawn Word which imported the html just fine, allowing edits and saving just as if I'd output a real Word doc.

Tables work fine, but images I hadn't gotten working yet. It may be as easy as just an tag in the HTML, or I may have to stream a separate part of the response containing the image data in binary, or some other method I haven't come up with yet. :)

link|flag
vote up 0 vote down

Try Aspose.Words for java.

link|flag
vote up 0 vote down

docx4j or poi, both of which are ASL v2

@wondersofcomputing: iText is actually free and open source

link|flag
vote up 0 vote down

iText is really easy to use.

If you requiere doc files you can call abiword (free lightweigh multi-os text procesor) from the command line, it has several conversion format convert options.

link|flag
vote up 0 vote down

After a little more research, I came across iText, a PDF and RTF-file creation API. I think I can use the RTF generation to create a Doc-readable file that can then be edited using Doc and re-saved.

Anyone have any experience with iText, used in this fashion?

Bill, the POI and iText API are very similar from a programming perspective. I've worked with both in the past and found them both easy to use and well documented.

With iText you gain the advantage of being able to switch between formats (RTF and PDF) with minor change to the code. If I remember correctly the content is laid out using the same calls and then set as PDF or RTF using a few lines of code.

However I believe the formatting in RTF is limited compared to DOC. I don't know if you'll be able to implement the advanced features you are looking for (tables, inline images) without a decent amount of hassle, if at all.

Given what you said that about HWPF not having enough functionality for your needs (I've only dealt with the Excel side of POI) your best bet may be to convince the powers that be that PDF is the best technology for the job.

link|flag
vote up 0 vote down

Hey Bill, you have written that you could able to open the html page with the MIME type "application/msword". is that solution working? if it is working then please let me know how it will work.

Thanks Kiran

link|flag
@Kiran Sorry, no, I didn't end up using that method, as I was able to convince my customer that a dynamic, up-to-date web page was better than downloading and distributing a static msword object. – Bill James Nov 5 at 15:26
vote up -1 vote down

I heartily second the suggestion for Apache POI. It creates Word documents directly, with no need for manual tweaking, it supports the most important of Word's formatting, and it's proven Open Source code. There is a bit of API to learn, but it's well worthwhile. Works good, lasts a long time.

iText, on the other hand, is a product you have to pay money for, and PDF is a horrible document format that isn't even the format you wanted in the first place!

I'd abandon your approach of fiddling with MIME settings. Images are only the first of many things that won't work.

link|flag
But isn't the POI implementation horribly limited? It seems to be able to create/write/read text, but none of the "extras" like tables, images, etc. – Bill James Oct 20 '08 at 14:21
-1 - POI is limited, iText is free, PDF isn't that bad... – banjollity Aug 4 at 7:15

Your Answer

Get an OpenID
or

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