0xC0000005 读取二进制文件时抛出异常(C++)
0xC0000005 Exception thrown when reading binary file (C++)
我正在尝试让用户登录和注册系统使用二进制文件来保存数据,并检查用户名和密码是否与保存的相同。当调用 Create_Login()
和 Write()
时,甚至在调用 Login()
时,它似乎工作正常。当 Login()
被自己调用时会出现问题。当它尝试读取用户名和密码时抛出异常。我已经尝试解决这个问题一段时间了,只是看不到它。任何帮助将不胜感激
这是我的代码
Main.cpp
int input;
cin >> input;
switch (input) {
case 1:
file.Login("");
break;
case 2:
file.Create_Login();
break;
}
.h 文件
struct Files {
char username[50];
char password[50];
string CheckPassword;
string CheckUsername;
public:
void Write(string name);
void Login(string name);
void Create_Login();
Files();
~Files();
public:
ifstream ReadFile; // Read
ofstream WriteFile; // Write
};
.cpp 文件
Files::Files() {}
void Files::Login(string name) {
cout << "\nEnter Username: " << flush; cin >> CheckUsername;
cout << "Enter Password: " << flush; cin >> CheckPassword;
name = CheckUsername;
ReadFile.open(name + ".bin", ios::out | ios::binary);
cout << "Your Username is: " << CheckUsername << ", " << "Your Password is: " << CheckPassword << endl; // debug line
if (ReadFile.is_open()) {
cout << "Opened file " + name + ".bin" << endl;
ReadFile.read(reinterpret_cast<char*>(&username), sizeof(Files)); //Execption Thrown Here!!!!!
ReadFile.read(reinterpret_cast<char*>(&password), sizeof(Files));
if (CheckUsername == username && CheckPassword == password) {
cout << "Access Granted" << endl;
}
else if (CheckUsername != username && CheckPassword != password) {
cout << "Access Denined" << endl;
}
else {
cout << "Error!!!" << endl;
}
}
else {
cout << "Could not open file: " + name << endl;
cout << "File does not exist" << endl;
}
}
void Files::Create_Login() {
cout << "Create UserName >> " << flush; cin >> username;
cout << "\nCreate Password >> " << flush; cin >> password;
Write(username);
}
void Files::Write(string name) {
WriteFile.open(name + ".bin", ios::binary);
if (WriteFile.is_open()) {
WriteFile.write(reinterpret_cast<char*>(&username), sizeof(Files));
WriteFile.write(reinterpret_cast<char*>(&password), sizeof(Files));
WriteFile.close();
}
else {
cout << "could not create file: " << name + ".bin" << endl;
}
Login(username);
}
Files::~Files() {
cout << "Destructor Called" << endl;
ReadFile.close();
}
异常已解决。通过改变
ReadFile.read(reinterpret_cast<char*>(&username), sizeof(Files));
ReadFile.read(reinterpret_cast<char*>(&password), sizeof(Files));
至
ReadFile.read(reinterpret_cast<char*>(&username), sizeof(username));
ReadFile.read(reinterpret_cast<char*>(&password), sizeof(password));
感谢提供信息
我正在尝试让用户登录和注册系统使用二进制文件来保存数据,并检查用户名和密码是否与保存的相同。当调用 Create_Login()
和 Write()
时,甚至在调用 Login()
时,它似乎工作正常。当 Login()
被自己调用时会出现问题。当它尝试读取用户名和密码时抛出异常。我已经尝试解决这个问题一段时间了,只是看不到它。任何帮助将不胜感激
这是我的代码
Main.cpp
int input;
cin >> input;
switch (input) {
case 1:
file.Login("");
break;
case 2:
file.Create_Login();
break;
}
.h 文件
struct Files {
char username[50];
char password[50];
string CheckPassword;
string CheckUsername;
public:
void Write(string name);
void Login(string name);
void Create_Login();
Files();
~Files();
public:
ifstream ReadFile; // Read
ofstream WriteFile; // Write
};
.cpp 文件
Files::Files() {}
void Files::Login(string name) {
cout << "\nEnter Username: " << flush; cin >> CheckUsername;
cout << "Enter Password: " << flush; cin >> CheckPassword;
name = CheckUsername;
ReadFile.open(name + ".bin", ios::out | ios::binary);
cout << "Your Username is: " << CheckUsername << ", " << "Your Password is: " << CheckPassword << endl; // debug line
if (ReadFile.is_open()) {
cout << "Opened file " + name + ".bin" << endl;
ReadFile.read(reinterpret_cast<char*>(&username), sizeof(Files)); //Execption Thrown Here!!!!!
ReadFile.read(reinterpret_cast<char*>(&password), sizeof(Files));
if (CheckUsername == username && CheckPassword == password) {
cout << "Access Granted" << endl;
}
else if (CheckUsername != username && CheckPassword != password) {
cout << "Access Denined" << endl;
}
else {
cout << "Error!!!" << endl;
}
}
else {
cout << "Could not open file: " + name << endl;
cout << "File does not exist" << endl;
}
}
void Files::Create_Login() {
cout << "Create UserName >> " << flush; cin >> username;
cout << "\nCreate Password >> " << flush; cin >> password;
Write(username);
}
void Files::Write(string name) {
WriteFile.open(name + ".bin", ios::binary);
if (WriteFile.is_open()) {
WriteFile.write(reinterpret_cast<char*>(&username), sizeof(Files));
WriteFile.write(reinterpret_cast<char*>(&password), sizeof(Files));
WriteFile.close();
}
else {
cout << "could not create file: " << name + ".bin" << endl;
}
Login(username);
}
Files::~Files() {
cout << "Destructor Called" << endl;
ReadFile.close();
}
异常已解决。通过改变
ReadFile.read(reinterpret_cast<char*>(&username), sizeof(Files));
ReadFile.read(reinterpret_cast<char*>(&password), sizeof(Files));
至
ReadFile.read(reinterpret_cast<char*>(&username), sizeof(username));
ReadFile.read(reinterpret_cast<char*>(&password), sizeof(password));
感谢提供信息