嗨,我正在尝试从 doc 和 docx 文件中读取文本,对于 doc 文件,我正在这样做
package test;
import java.io.File;
import java.io.FileInputStream;
import org.apache.poi.hwpf.HWPFDocument;
import org.apache.poi.hwpf.extractor.WordExtractor;
public class ReadFile {
public static void main(String[] args) {
File file = null;
WordExtractor extractor = null;
try {
file = new File("C:\\Users\\rijo\\Downloads\\r.doc");
FileInputStream fis = new FileInputStream(file.getAbsolutePath());
HWPFDocument document = new HWPFDocument(fis);
extractor = new WordExtractor(document);
String fileData = extractor.getText();
System.out.println(fileData);
} catch (Exception exep) {
}
}
}
但这给了我一个org/apache/poi/OldFileFormatException
例外。
知道如何解决这个问题吗?
我还需要阅读 Docx 和 PDF 文件吗?有什么好方法可以读取所有类型的文件吗?