我想知道是否有人可以帮助我弄清楚为什么当我阅读 .doc 文件时我的文本没有对齐。到目前为止,在我的代码中,我使用的是 WordExtractor,但我遇到了格式问题,内容排列不正确。这是我使用 Java 1.7 编写的代码。
public class Doc {
File docFile = null;
WordExtractor docExtractor = null ;
WordExtractor exprExtractor = null ;
public void read(){
docFile = new File("blue.doc");
try{
FileInputStream fis = new FileInputStream(docFile.getAbsolutePath());
HWPFDocument doc=new HWPFDocument(fis);
docExtractor = new WordExtractor(doc);
}catch(Exception e){
System.out.println(e.getMessage());
}
System.out.println(docExtractor.getText());
}
}
程序如何显示文档。
A E
I'm stuck in Folsom Prison, and time keeps draggin on.
它应该像这样显示
A E
I'm stuck in Folsom Prison, and time keeps draggin on.