Currently my project need export report to MS Word , and i choose using RTFTemplate engine to do it. But my problem is I need convert all character to RTF string first . Everyone have experiment with this problem can suggest me ?
How to convert UTF-8 string to RTF string in java?
RTFTemplate can be found at rtftemplate.sourceforge.net –
Altis
Maybe helpful: https://mcmap.net/q/412437/-how-to-output-unicode-string-to-rtf-using-c –
Altis
Yes.
You can use RtfDocument from iText:
new RtfDocument().filterSpecialChar(baos, sentence, true, true);
is an apache project that help works with MS Office format.
© 2022 - 2024 — McMap. All rights reserved.