嗨,我正在尝试使用 .txt 文件创建一个单词列表,在该文件中我从 JOptionPane 窗口中取出用户的输入,并将其存储在文本文件的新行中。我遇到的问题是,当我输入多个单词时,它会覆盖已经存在的数据。我希望它跳过一行并将其添加到当前列表中。这是我的代码:
public static void Option1Method() throws IOException
{
FileWriter aFileWriter = new FileWriter("wordlist.txt");
PrintWriter out = new PrintWriter(aFileWriter);
String word = JOptionPane.showInputDialog(null,"Enter word or phrase: ");
out.println(word);
out.close();
aFileWriter.close();
}