91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

用poi實現doc轉html

發布時間:2020-07-24 06:48:17 來源:網絡 閱讀:10153 作者:Red_Ant_hoyl 欄目:開發技術

廢話,不多說直接上代碼。

一、doc轉html,并且帶文件夾

    / * word轉html
     * html轉圖片
     * @param tagPath   轉換html文件之后,所帶的圖片附件文件夾
 * @param sourceFileName 源文件
 * @param outPath  輸出文件xx.html
 * @return 
 * @throws Exception
     */
public static String docToHtml(String tagPath,  
        String sourceFileName, String outPath) throws Exception {
        File file = new File(tagPath);
        if(!file.exists()) {
                file.mkdirs();
        }
        HWPFDocument wordDocument = new HWPFDocument(new FileInputStream(sourceFileName));
        org.w3c.dom.Document document = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
        WordToHtmlConverter wordToHtmlConverter = new WordToHtmlConverter(document);
        //保存圖片,并返回圖片的相對路徑
        wordToHtmlConverter.setPicturesManager((content, pictureType, name, width, height) -> {
                try (FileOutputStream out = new FileOutputStream(tagPath + name)) {
                        out.write(content);
                } catch (Exception e) {
                        e.printStackTrace();
                }
                return "image/" + name;
        });
        wordToHtmlConverter.processDocument(wordDocument);
        org.w3c.dom.Document htmlDocument = wordToHtmlConverter.getDocument();
        DOMSource domSource = new DOMSource(htmlDocument);
        StreamResult streamResult = new StreamResult(new File(outPath));
        TransformerFactory tf = TransformerFactory.newInstance();
        Transformer serializer = tf.newTransformer();
        serializer.setOutputProperty(OutputKeys.ENCODING, "utf-8");
        serializer.setOutputProperty(OutputKeys.INDENT, "yes");
        serializer.setOutputProperty(OutputKeys.METHOD, "html");
        serializer.transform(domSource, streamResult);
        return outPath;
}

調用:

/**doc
             * 轉html
             */
            String tagPath = "D:\\red_ant_file\\20180915\\image\\";
            String sourcePath = "D:\\red_ant_file\\20180915\\RedAnt的實驗作業.doc";
            String outPath = "D:\\red_ant_file\\20180915\\123.html";
            try {
                AllServiceIsHere.docToHtml(tagPath, sourcePath, outPath);
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

演示:

用poi實現doc轉html

走你:

用poi實現doc轉html

用poi實現doc轉html

用poi實現doc轉html

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

淄博市| 安宁市| 静乐县| 莱芜市| 抚州市| 洞头县| 德钦县| 清新县| 同江市| 子洲县| 泰顺县| 普定县| 治多县| 泰宁县| 屏山县| 巴林右旗| 云浮市| 沽源县| 夏邑县| 富宁县| 巴里| 南江县| 普格县| 合山市| 南丹县| 竹溪县| 天台县| 北票市| 班玛县| 阿瓦提县| 沾益县| 翁源县| 明光市| 平陆县| 尼玛县| 东阿县| 山西省| 滕州市| 安龙县| 特克斯县| 嘉定区|