如果你有一个文本文件:
AAA:123:123:AAAA
BBB:456:456:BBBB
起初,当文本文件中没有空行并且您读取和检索数据时。一切都很好。
当您将文件写入新文件并替换数据或更新时
AAA:9993:9993:AAAA
BBB:456:456:BBBB
-------- This is a blank line-----------
发生这种情况后,会弹出 NoSuchElementException。如果不删除空行,总是会弹出错误。
try {
File fileCI = new File("CI.txt");
FileWriter fileWriter = new FileWriter(fileCI);
BufferedWriter bw = new BufferedWriter(fileWriter);
for (Customer ci : custList){
if (inputUser.equals(ci.getUserName()) && inputPass.equals(ci.getPassword())) {
ci.setCardNo(newCardNo);
ci.setCardType(newCardType);
}
String text = ci.getRealName() + ";" + ci.getUserName() + ";" + ci.getPassword() + ";" + ci.getAddress() + ";" + ci.getContact() + ";" + ci.getcardType() + ";" + ci.getcardNo() + System.getProperty("line.separator");
bw.write(text);
}
bw.close();
fileWriter.close();
}
catch (IOException e) {
e.printStackTrace();
}
如果我不添加 System.getProperty("line.separator"); 字符串将被添加,所有内容都将组合成一行,没有新的分隔符。但是这个分隔符在文本文件的末尾添加了一个空行。我能做些什么来避免这个问题吗?
我应该在我阅读文件的地方解决吗?或者在我将文件写入新文件的地方解决它。
try {
Scanner read = new Scanner(file);
read.useDelimiter(";|\n");
String tmp = "";
while (read.hasNextLine()){
if (read.hasNext()){
custList.add(new Customer(read.next(), read.next(), read.next(), read.next(), read.next(), read.next(), read.next()));
} else {
break;
}
}
read.close();
}
catch (IOException e) {
e.printStackTrace();
}
编辑:上面的阅读现在完美无缺!