我不能在我的文本文件中使用这段代码换行,这有什么问题?
try{
oprint=new FileWriter("HighScores.txt",true);
} catch (IOException e1) {
System.out.println("error");
}
try{
String stampa= "Player: "+name+" --- time "+ this.getDurata()+" s \n";
oprint.write(stampa);
oprint.close();
}catch(Exception e){
System.out.println("error");
}