WORD/PDF纯文本提取
/** * 提取WORD文档中的文本内容 * @param path * @return */ private static String getWordText(String path) { String resultText = null; if (path.endsWith(".doc")) { try (FileInputStream is = new FileInputStream(new F.



