jOpenDocument is a free pure Java library for developers looking to use, create and manipulate Open Document files without OpenOffice.org.
Questions tagged [jopendocument]
17 questions
0
votes
1 answer
JOpenDocument: problems with blank rows and cells
I have a problem when I parse .ods file with JOpenDocument . There are three rows and four columns in my file, but when I parse this file I get 1024 columns and too many rows. There are many blank cells.
I opened this .ods file like xml and it…

Mexoff
- 103
- 3
0
votes
1 answer
jOpenDocument: problems trying to generate PDF from ODS in
I have an .ods file and want to export it as PDF using jOpenDocument (Java).
I use following code:
// load the ODS file
final OpenDocument filledCertificate = new OpenDocument();
…
user4942391