我正在使用 BufferedReader 从 txt 文件中读取数字进行分析。我现在要解决的方法是 - 使用 .readline 读取一行,使用 .split 将此字符串拆分为字符串数组
public InputFile () {
fileIn = null;
//stuff here
fileIn = new FileReader((filename + ".txt"));
buffIn = new BufferedReader(fileIn);
return;
//stuff here
}
public String ReadBigStringIn() {
String line = null;
try { line = buffIn.readLine(); }
catch(IOException e){};
return line;
}
public ProcessMain() {
initComponents();
String[] stringArray;
String line;
try {
InputFile stringIn = new InputFile();
line = stringIn.ReadBigStringIn();
stringArray = line.split("[^0-9.+Ee-]+");
// analysis etc.
}
}
这很好用,但是如果 txt 文件有多行文本怎么办?有没有办法输出一个长字符串,或者可能是另一种方法?也许使用while(buffIn.readline != null) {}
?不知道如何实现这一点。
想法赞赏,谢谢。