Hello all,
i try to convert html string to docx file.
its working ok but when i try to enter hebrew words and rtl it its not working good.
My code:
public static void main(String[] args) throws Exception
{
String html = "<html><head><title>Import me</title></head><body style=\"text-align: right;\"><table border=\"1\"><tbody><tr><td width=\"100\">מס'</td><td>נסיון:</td><td width=\"200\">לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית ושבעגט ליבם סולגק. בראיט</td></tr></tbody></table></body></html>";
docx4j(html);
}
private static void docx4j(String html) throws Exception {
WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.createPackage(); ...