java如何从txt文件中一次读出一句话,以“,”“。”为分隔???

最好写出代码。。。
2024-12-12 03:42:49
推荐回答(2个)
回答1:

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();
}
}和这个类似,自个判断吧

回答2:

只有按行读的方法,只能在此基础上再处理了