所以,问题来了。我想使用java GUI创建一个文件,这类似于用户可以在我的GUI中创建一个帐户或登录,然后他们的帐户变成文件。我的txt。但是,我这里有个问题。当我在GUI中创建一个帐户时,它运行良好,并且创建了文件。但是,当我再次尝试创建帐户时,以前创建的帐户已经不存在了。所以,我想在这种情况下我需要使用arraylist,我使用了它,但它仍然不起作用。代码如下:
String filename="D:/settings.txt";
public void getIdentity() throws FileNotFoundException, IOException{
File file = new File(filename);
ArrayList identity = new ArrayList();
String fullname = txt_fullname.getText();
String username = txt_username.getText();
String password = pass_password.getText();
try {
FileWriter fw = new FileWriter(filename);
Writer output = new BufferedWriter(fw);
identity.add(fullname + "-" + username + "-" + password);
for (int i = 0; i <identity.size(); i++)
{
output.write(identity.get(i).toString() + "\n");
}
output.close();
}
catch (Exception ex)
{
JOptionPane.showMessageDialog(null, "Cannot create a file");
}
}
这就是行动:
try {
if(txt_username.getText() != null && pass_password.getText() != null
&& txt_fullname.getText() != null)
{
getIdentity();
JOptionPane.showMessageDialog(null, "Congratulations, you've created a file");
this.setVisible(false);
Login login = new Login();
login.setVisible(true);
}
else {
JOptionPane.showMessageDialog(null, "Please fill in your identity");
}
} catch (IOException ex) {
}