Hello everyone,
I’m using temp licence to convert Word to PDF with code below:
License newjavalic = new License();
newjavalic.setLicense(new FileInputStream(licenseFile));
Document doc = new Document(“testWord.doc”);
doc.save(“out.pdf”);
When I deploy and run it in Tomcat on Windows it works well, but when I deploy and test with chinese document with Tomcat on Linux, chinese character can not be converted, it displays incorrect. the attached file is result after I convert it
Everyone help me.