Designed to be fast and easy to deploy. Nothing more.
The jOpenDocument library is free and open source (GPL).
You can build anything on it without limitations.
Behind the product is a team that is solely focused on helping you accelerate development with jOpenDocument.
With the commercial licence and support, we fund the free jOpenDocument for everyone.
For closed source projects incompatible with the GPL licence, we provide a commercial licence.
Our goal is to provide an easy-to-use and stable API.
For example, to load and display a spreadsheet document, you only need the few lines below:
final OpenDocument doc = new OpenDocument();
doc.loadFrom("invoice.ods");
// Show time !
final JFrame f = new JFrame("Invoice Viewer");
ODSViewerPanel viewer = new ODSViewerPanel(doc);
f.setContentPane(viewer);
f.pack();
f.setVisible(true);
The library supports the OpenDocument Format (ODF) versions :
1.0, 1.1, 1.2 and 1.3 .
It evolves with the standard in mind.
The architecture of the library is designed for performance, hundred of documents can be generated by second.
The performances are fine tuned with JProfiler.