• 技术文章 >Java >java教程

    java将word转换为html(代码)

    (*-*)浩(*-*)浩2019-08-14 16:29:24转载3733

    代码:

    public static void main(String[] args) throws Exception {
        String filePath = "C:/Users/Administrator/Desktop/92个诊疗方案及临床路径/";
        File file = new File(filePath);
        File[] files = file.listFiles();
        String name = null;
        for (File file2 : files) {
            Thread.sleep(500);
            name = file2.getName().substring(0, file2.getName().lastIndexOf("."));
            System.out.println(file2.getName());
            if (file2.getName().endsWith(".docx") || file2.getName().endsWith(".DOCX")) {
                CaseHtm.docx(filePath ,file2.getName(),name +".htm");
            }else{
                CaseHtm.dox(filePath ,file2.getName(),name +".htm");
            }
        
        }
    }
    /**
    * 转换docx
    * @param filePath
    * @param fileName
    * @param htmlName
    * @throws Exception
    */
    public static void docx(String filePath ,String fileName,String htmlName) throws Exception{
        final String file = filePath + fileName;
        File f = new File(file);  
        // ) 加载word文档生成 XWPFDocument对象
        InputStream in = new FileInputStream(f);
        XWPFDocument document = new XWPFDocument(in);
        // ) 解析 XHTML配置 (这里设置IURIResolver来设置图片存放的目录)
        File imageFolderFile = new File(filePath);
        XHTMLOptions options = XHTMLOptions.create().URIResolver(new FileURIResolver(imageFolderFile));
        options.setExtractor(new FileImageExtractor(imageFolderFile));
        options.setIgnoreStylesIfUnused(false);
        options.setFragment(true);
        // ) 将 XWPFDocument转换成XHTML
        OutputStream out = new FileOutputStream(new File(filePath + htmlName));
        XHTMLConverter.getInstance().convert(document, out, options);
    }
    /**
    * 转换doc
    * @param filePath
    * @param fileName
    * @param htmlName
    * @throws Exception
    */
    public static void dox(String filePath ,String fileName,String htmlName) throws Exception{
        final String file = filePath + fileName;
        InputStream input = new FileInputStream(new File(file));
        HWPFDocument wordDocument = new HWPFDocument(input);
        WordToHtmlConverter wordToHtmlConverter = new WordToHtmlConverter(DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument());
        //解析word文档
        wordToHtmlConverter.processDocument(wordDocument);
        Document htmlDocument = wordToHtmlConverter.getDocument();
        
        File htmlFile = new File(filePath + htmlName);
        OutputStream outStream = new FileOutputStream(htmlFile);
        
        DOMSource domSource = new DOMSource(htmlDocument);
        StreamResult streamResult = new StreamResult(outStream);
        
        TransformerFactory factory = TransformerFactory.newInstance();
        Transformer serializer = factory.newTransformer();
        serializer.setOutputProperty(OutputKeys.ENCODING, "utf-8");
        serializer.setOutputProperty(OutputKeys.INDENT, "yes");
        serializer.setOutputProperty(OutputKeys.METHOD, "html");
        
        serializer.transform(domSource, streamResult);
        outStream.close();
    }

    pom.xml配置:

    <dependency>
        <groupId>fr.opensagres.xdocreport</groupId>
        <artifactId>fr.opensagres.xdocreport.document</artifactId>
        <version>1.0.5</version>
    </dependency>
    <dependency>  
        <groupId>fr.opensagres.xdocreport</groupId>  
        <artifactId>org.apache.poi.xwpf.converter.xhtml</artifactId>  
        <version>1.0.5</version>  
    </dependency>
        <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi</artifactId>
        <version>3.12</version>
    </dependency>
    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi-scratchpad</artifactId>
        <version>3.12</version>
    </dependency>

    以上就是java将word转换为html(代码)的详细内容,更多请关注php中文网其它相关文章!

    声明:本文转载于:CSDN,如有侵犯,请联系admin@php.cn删除
    专题推荐:java
    上一篇:Java基础:多态的理解与应用 下一篇:盘点Java中的各种锁
    20期PHP线上班

    相关文章推荐

    • 【活动】充值PHP中文网VIP即送云服务器• java中点是什么意思• JAVA语言是什么意思• 通过官网怎么进行Java安装• java源文件的扩展名是什么
    1/1

    PHP中文网