public static void parse(String path) throws Exception {
File file = new File(path);
if (file.exists()) {
InputStream input = new FileInputStream(file);
byte data[] = new byte[1024];
int length = input.read(data);
System.out.println("输入的数据是:【" + new String(data, 0, length) + "】");
input.close();
}
}和这个类似,自个判断吧
只有按行读的方法,只能在此基础上再处理了