我想读取 .txt、.doc 和 .docx 文件并打印这些文件的内容。当我运行以下代码时,会读取一些 .doc 和 .txt 文件,但许多文件无法读取。
import java.io.File;
import javax.swing.*;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileReader;
public class FindYourDocx
{
public static void main(String[] args)
{
String text = "";
int read, N = 1024 * 1024;
char[] buffer = new char[N];
try {
JFileChooser openFile=new JFileChooser();
openFile.setCurrentDirectory(new File("."));
openFile.showOpenDialog(null);
File f1=openFile.getSelectedFile();
String file1=f1.toString();
File f =new File(file1);
JOptionPane.showMessageDialog(null,f);
FileReader fr = new FileReader(f);
BufferedReader br = new BufferedReader(fr);
while(true) {
read = br.read(buffer, 0, N);
text += new String(buffer, 0, read);
System.out.println("Follows"+text+" ");
if(read < N) {
break;
}
System.out.println("Follows"+text+" "); }
} catch(Exception ex) {
ex.printStackTrace();
}
}}
通过执行上述代码(对于某些文件),我得到了一些有线消息,如下所示
http://i.stack.imgur.com/RwNWM.jpg
有人请帮我解决这个问题....
阅读 .docx 我遇到了类似 XWPFDocument 使用 apacheio .... 这是什么?