我想将一些数据写入文件,这是我的代码:
for (Season s : seasons) {
if (s.getYear() >= start && s.getYear() <= end) {
line += s.getYear() + ", " + s.getWinTeamName() + ", "
+ s.getMinorPremiersTeam() + ", "
+ s.getWoodenSpoonTeam()+ "\n"; }
}
System.out.println("File created.\n"); // Informing the user about
// the creation of the file.
out.write(line);
out.close();
我的文件已创建,但这就是我得到的:
2005, Wests Tigers, Parramatta, Newcastle2006, Broncos, Storm, Rabbitohs
但我希望它是:
2005, Wests Tigers, Parramatta, Newcastle
2006, Broncos, Storm, Rabbitohs
我认为在行变量末尾添加“\n”可以解决这个问题,但事实并非如此。
关于如何解决这个问题的任何建议?