Poi-2:个人记录使用过程的问题

在尝试使用Apache Poi将docx文件转换为html时,遇到NoClassDefFoundError和IllegalArgumentException。尝试更新到最新版poi4.2,但问题未解决。重命名docx为doc也不可行,因为poi仍将其识别为OOXML文件。考虑使用jacob库,虽然能在Windows环境下转换docx,但依赖于本地安装的Office或WPS,寻求更优解决方案。
摘要由CSDN通过智能技术生成

Poi-2:个人记录使用过程的问题

doc以及docx转html

public static String docToHtml(String wPath) throws Exception 
        String fpath=new GetFromFilePath().getNameFromPath(wPath);
        File path = new File(fpath);
        String imagePathStr = path.getAbsolutePath() + "\\static\\image\\";
        String sourceFileName = wPath;

        String targetFileName = path.getAbsolutePath() + "\\static\\"+fpath+".html";
        File file = new File(imagePathStr);
        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(imagePathStr + 
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值