HTML to PDF / DOCX / RTF Java converter library › Forums › PD4ML Forums › Technical questions / Troubleshooting › Encoding problem › Reply To: Encoding problem
November 9, 2020 at 14:27
#34016
We’ll analyze the issue and let you know.
BTW: does it change the output if you remove the charset from
byte[] myBytes = html.getBytes(StandardCharsets.UTF_8);
to
byte[] myBytes = html.getBytes();
?