how can i create an odt (libre(open)office writer) file with java programmatically? a hello world example will be sufficient. i looked at the openoffice website but the documentation wasn't clear.

link|improve this question
feedback

3 Answers

Take a loot at ODFDOM - the OpenDocument API

ODFDOM is a free OpenDocument Format (ODF) library. Its purpose is to provide an easy common way to create, access and manipulate ODF files, without requiring detailed knowledge of the ODF specification. It is designed to provide the ODF developer community with an easy lightwork programming API portable to any object-oriented language.

The current reference implementation is written in Java.

// Create a text document from a standard template (empty documents within the JAR)
OdfTextDocument odt = OdfTextDocument.newTextDocument();

// Append text to the end of the document. 
odt.addText("This is my very first ODF test");

// Save document
odt.save("MyFilename.odt");
link|improve this answer
The link you mention seems to be dead... – Geert Schuring May 11 at 12:26
feedback

I have not tried it, but using JOpenDocument may be an option. (It seems to be a pure Java library to generate OpenDocument files.)

link|improve this answer
This looks good! Thanks. – Geert Schuring May 11 at 12:26
feedback

Open Office files are XML inside a Zip archive.

Or more pointedly, check up on XML handling and dealing with resources in archives, and the entire task can be done in J2SE - without any other APIs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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