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.
|
feedback
|
|
Take a loot at ODFDOM - the OpenDocument API
| |||
|
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.) | |||
|
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. | |||
|
feedback
|