Hi to all,
i would like to know if Docx4j is able to generate pivot table from a data source (for example, another Excel Tab).
If it is possible, could you give me a link for documentation about creating XLSX with docx4j ?
Many thanks to all.
It is currently Fri Apr 04, 2025 1:22 pm
WordprocessingMLPackage template = WordprocessingMLPackage.load(new ByteArrayInputStream(out.toByteArray()));
//start to do something on the template
....
//end
ByteArrayOutputStream outv = new ByteArrayOutputStream();
SaveToZipFile saver = new SaveToZipFile(template);
saver.save(outv);
MainDocumentPart documentPart = wordMLPackage.getMainDocumentPart();
String xmlContent= documentPart.getXML();
Total posts 10157 • Total topics 2857 • Total members 2087