Hi,
i'm developing an eclipse plugin that uses docx4j to produce docx documentation. What i need is getting a string rapresentation of the output docx file, and not saving it do disk. I need something like
WordprocessingMLPackage wordMLPackage = new ...
[...]
String docxFile = wordMLPackage.toString()
How can i do something like this?