poi获取word文本

2020-09-16  本文已影响0人  小诸葛686

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){
            }

        }
    }

}
上一篇 下一篇

猜你喜欢

热点阅读