【发布时间】:2014-05-21 01:35:10
【问题描述】:
我正在尝试通过搜索用户名来创建更改密码功能,如果找到确认通过,如果为真则将密码替换为 newPass。
文件是这样写的:USERNAME;PASSWORD
我正在使用它来替换字符串,但不确定它的语法是否正确(我是新的)
tempPass.replace(0, tempPass.length(), newPass);
这是我当前的代码:
void AccountManager::changePassword(AccountManager & account) {
string username, password, newPass, passwordConf, tempUser, tempPass;
fstream openFile("UserPass.txt", ios_base::out | ios_base::in | ios_base::app);
// / Check if username exsists.
do {
cout << "Enter your username: " << endl;
getline(cin, username);
cout << "Enter you current password: " << endl;
getline(cin, password);
if (account.UserPass[username] != password) {
cout << "Username and password do not match. " << endl;
}
} while (account.UserPass[username] != password);
do {
cout << "Enter new password: " << endl;
getline(cin, newPass);
cout << "Retype password: " << endl;
getline(cin, passwordConf);
if (newPass != passwordConf) {
cout << "Password does not match confirmation. " << endl;
}
} while (newPass != passwordConf);
// /find / replace password with newPass in file
while (!openFile.eof()) {
getline(openFile, tempUser, ';');
getline(openFile, tempPass);
if ((tempUser == username) && (tempPass == password)) {
ofstream openFile("UserPass.txt", ios_base::app);
tempPass.replace(0, tempPass.length(), newPass); // changes pass in file at index ;+1
cout << "Password has been changed. " << endl;
switchLog(account); // Login on successful password change.
break;
}
}
account.UserPass[username] = newPass;
}
谢谢,
【问题讨论】: