嗨即時嘗試創建一個單詞列表使用.txt文件,其中我從JOptionPane窗口中輸入用戶的輸入並將其存儲在文本文件的新行。我遇到的問題是,當我輸入多個單詞時,它會覆蓋已存在的數據。我希望它跳過一行並將其添加到當前列表中。這是我有的代碼:需要停止txt文件中的文字覆蓋JAVA
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();
}