自己在maven中央仓库复制的pox 4.12不管作用,用springboot自带的。
pom.xml
<!-- 测试--> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> </dependency>
java
@Slf4j
public class HwpfTest {
@SuppressWarnings("deprecation")
@Test
public void testReadByExtractor() throws Exception {
InputStream is = new FileInputStream("D:\\test.doc");
WordExtractor extractor = new WordExtractor(is);
//输出word文档所有的文本
log.info(extractor.getText());
this.closeStream(is);
}