2

I have a Java EE web application wherein I need to create an ODF file and fill it with submitted data.

How can I create and fill an ODF file using Java? Is there a library to use? I have noticed Apache POI, but I haven't found a well documented way to open and write an ODF using Java.

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
mohamed abdelbassat
  • 271
  • 1
  • 3
  • 10
  • Did you try the [Apache ODF Toolkit](http://incubator.apache.org/odftoolkit/)? – Gagravarr Aug 12 '13 at 19:19
  • I have found JODReports, but i cant find an example explaining how to use it on a JSF web application. there is a demos (using spring, something that i won't would to understand !!). If someone can give me a hand ;) – mohamed abdelbassat Nov 27 '13 at 15:36
  • The Apache ODF Toolkit no longer appears to exist. A non-Apache [ODF Toolkit](https://odftoolkit.org/) ([github](https://github.com/tdf/odftoolkit)) - apparently by The Document Foundation / LibreOffice. – Pixelstix May 16 '23 at 15:40

1 Answers1

1

JODF is another ODF library for Java and Android.

Comes with many examples

JavaX
  • 11
  • 1