我喜欢使用ubuntu(Linux),使用g ++编译器。
我有一个非常奇怪的情况,昨天我的代码工作正常,我没有做任何事情,但今天,它没有工作。这是我的代码:
ifstream file;
file.open("users.txt", ios::in);
if(file.is_open()){
int counter = 0;
string readLine;
file.seekg(0, ios::end);
if (file.tellg() == 0)
file.close();
else {
while(!file.eof()){
getline(file,readLine);
cout << "whats happening?" << readLine << endl;
// I was suppose to do process here, but i comment it for debug purposes
}
openFile.close();
}
我不明白为什么,我花了2个小时调试,昨天,它可以读取用户数据,但今天,我打开了相同的项目,但它无法读取文件。我100%肯定,路径是正确的,文件有内容。我的结果是:
Whats happening?
多数民众赞成,没有别的。帮助我,我疯了看看这个东西!!!!!!!!
答案 0 :(得分:6)
file.seekg(0, ios::end);
将寻找文件的末尾。你需要在开始阅读之前回到起点即。 is.seekg(0, ios::beg);