python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
AEM/Jetty and javax.xml.transform.TransformerFactory
We are using the docx4j library to add watermark to the pptx files. Java code below:
public static void main(String[] args) {
try {
OutputStream object = new FileOutputStream("C:\\test.pptx&qu...
Elango
Votes: 0
Answers: 1
Conversion of docx to pdf using docx4j library in java
If i am trying to convert the docx file to pdf file
Code :
InputStream is = file.getInputStream();
WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.load(is);
File outputFile = new File(...
A.G.S Suresh
Votes: 0
Answers: 0
Docx4j variableReplace() with string containing "&"
Replacing '&' with & fixes the problem
I'm currently struggling with the method variableReplace() from docx4j.
Basically I'm reading in json-files and want to replace the read json propert...
Michael Fuchs
Votes: 0
Answers: 0