美文网首页
poi获取word文本

poi获取word文本

作者: 小诸葛686 | 来源:发表于2020-09-16 21:33 被阅读0次

poi获取word文本支持doc和docx后缀。

/**
 * 获取文本内容
 * @param filePath
 * @return
 * @throws Exception
 */
public static String getDocAllText(String filePath) {
    FileInputStream fis = null;
    try{
        fis = new FileInputStream(filePath);
        WordExtractor wordExtractor = new WordExtractor(fis);
        return wordExtractor.getText();
    }catch (Exception e){
        throw new RuntimeException(e);
    }finally {
        if(fis != null){
            try{
                fis.close();
            }catch (Exception e){
            }

        }
    }

}

相关文章

网友评论

      本文标题:poi获取word文本

      本文链接:https://www.haomeiwen.com/subject/vdzhyktx.html