我正在尝试创建一个命令,允许登录的用户编辑其用户名和密码,然后保存更新的详细信息。目前更新细节似乎有效,但是当我将详细信息写入新文件时,旧文件中的所有其他数据(其他用户详细信息)将被删除,并且只有当前用户更新的详细信息会出现在文件中。这是我的代码:
public class UpdateDetailsCommand implements Command{
private BufferedWriter out;
private BufferedReader in;
private MsgSvrConnection conn;
public void execute() throws IOException
{
if (conn.getCurrentUser() != null) {
String username1 = conn.getCurrentUser();
String password1 = conn.getServer().getUserPassword(username1);
BufferedReader fr = new BufferedReader(new FileReader("pwd.txt"));
PrintWriter fw = new PrintWriter(new FileWriter("pwd.txt", true));
String line;
String username = in.readLine();
String password = in.readLine();
if (password != null && username != null) {
while ((line = fr.readLine()) != null) {
if (line.contains(username1) && line.contains(password1) ){
line = line.replace(username1, username);
line = line.replace(password1, password);
fw.println(line);
}
}
fr.close();
fw.close();
out.write("done");
out.flush();
}
}
}
public UpdateDetailsCommand(BufferedReader in, BufferedWriter out,
MsgSvrConnection serverConn)
{
this.out = out;
this.in = in;
this.conn = serverConn;
} }
我猜测我读写文件的方式不太正确,但我不确定我在这里做错了什么。
答案 0 :(得分:3)
如果要编写文本文件(行结构),请使用PrintWriter。
PrintWriter fw = new PrintWriter( new FileWriter("temp_pwd.txt", true) );
while循环不能包含close() - 这会终止所有内容。
while ((line = fr.readLine()) != null) {
if (line.contains(username1))
line = line.replace(username1, username);
if (line.contains(password1))
line = line.replace(password1, password);
fw.println(line);
} // close while block here
fr.close();
fw.close();
您还应确保仅更改一行。
可能是密码不止一次出现的机会很小。 if (line.contains(username1) && line.contains(password1) ){
line = line.replace(username1, username);
line = line.replace(password1, password);
}
而且,contains()不是一种好的测试方法。如果您有一个用户
,该怎么办? josephus,Oki987e3
和另一个
joseph,Oki987e3
和约瑟夫改变了他的用户名和密码?