Hi!
I've been looking at jopendocument for a few days, and considering
using it for our project. I have several questions:
- Is this project continued? The authors are taking care of the users
community?
I think we are open, we are pleased to share ideas and provide help. Bug
reports and contributions are welcome.
- Are the 1.1 sources for JDK5 available somewhere? I can't get to
compile corrently the provided sources with 1.5
The source code is the same.
The incompatible part with JDK5 are the ScriptEngine related classes,
because only included in JDK6.
I think you see some errors related to the "source code level" which is
Java 6 ( @override, etc...)
but you can use it with JDK5.
- Is this the real mailing list? :P The link at jopendocument.org
points somewhere else (and is not available anymore)
We switched to googlegroups, our "old" mailing list was hosted on
jopendocument.org, that's why the history is so small.
- Which part of the API allows me to inject Images in the OpenOffice
document?
Here is code for "pic.png" injection:
final ODPackage pkg = new ODPackage(new File("test.odt"));
pkg.putFile("Pics/my.png", FileUtils.readBytes(new File("pic.png")));
pkg.save();
Regards,
Guillaume