1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
   | import org.docx4j.Docx4J; import org.docx4j.Docx4jProperties; import org.docx4j.convert.out.HTMLSettings; import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
  import java.io.FileOutputStream; import java.io.OutputStream;
  public class DocxToHtmlUtils {     
 
 
 
 
 
      public static void convertDocxToHtml(String docxPath, String htmlPath) throws Exception {         WordprocessingMLPackage wordMLPackage = Docx4J.load(new java.io.File(docxPath));
          HTMLSettings htmlSettings = Docx4J.createHTMLSettings();         String imageFilePath = htmlPath.substring(0, htmlPath.lastIndexOf("/") + 1) + "/images";          htmlSettings.setImageDirPath(imageFilePath);         htmlSettings.setImageTargetUri("images");          htmlSettings.setWmlPackage(wordMLPackage);         String userCSS = "html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img,  ol, ul, li, table, caption, tbody, tfoot, thead, tr, th, td " +                 "{ margin: 0; padding: 0; border: 0;}" +                 "body {line-height: 1; padding: 30px;} ";         userCSS = "body {padding: 30px;}";         htmlSettings.setUserCSS(userCSS); 
          OutputStream os = new FileOutputStream(htmlPath);         Docx4jProperties.setProperty("docx4j.Convert.Out.HTML.OutputMethodXML", true);         Docx4J.toHTML(htmlSettings, os, Docx4J.FLAG_EXPORT_PREFER_XSL);     }
      public static void main(String[] args) throws Exception {         convertDocxToHtml("/Users/Biao/Desktop/xxxxx.docx", "/Users/Biao/Desktop/xxx/xyz.html");     } }
   |