我有一个名为的函数readNextString(ifstream &file , char* &pBuffer)
,它从文件中提取下一个字符串,直到','
或'\n'
到达,删除字符串开头和结尾的空格,将其余部分保存在 pBuffer 中,如果一切正常则返回 true - 否则返回 false。一切正常,直到到达文件末尾。设置eof
标志后,我无法移动我的 get 指针。我试过这个:
if(file.eof())
{
file.clear();
file.seekg(0 , ios::end)
}
...然后删除字符串末尾的空格。这几乎有帮助。该函数提取没有空格的字符串,但我得到一个无限循环。
我的实际问题是:如何检查下一个字符是否为EOF
,如果不能 - 有没有其他方法可以做到这一点?
这是我的实际功能:
bool readNextString(ifstream &file , char* &pBuffer)
{
if(file.eof()){
return false;
}
for(; file.good() && isWhitespace(file.peek()) && !file.eof() ; file.seekg(1 , ios::cur))
;
if(file.eof()){
cout << "The file is empty.\n";
return false;
}else{
streamoff startPos = file.tellg();
cout << "startPos : " << startPos << endl;
for(;file.good() && file.peek()!='\n' && file.peek()!=',' && file.peek()!= EOF; file.seekg(1 , ios::cur))
;
streamoff A = file.tellg();
cout << "A : " << A << endl;
file.seekg(-1 , ios::cur);
for(;file.good() && isWhitespace(file.peek()) ; file.seekg(-1 , ios::cur))
;
file.seekg(2 , ios::cur);
streamoff endPos = file.tellg();
cout << "endPos : " << endPos << endl;
pBuffer = new char[endPos-startPos];
if(pBuffer)
{
file.seekg(startPos , ios::beg);
file.get(pBuffer , endPos-startPos , ',' || '\n');
for(;file.good() && file.peek()!='\n' && file.peek()!=',' && file.peek()!= EOF; file.seekg(1 , ios::cur))
;
file.seekg(2 , ios::cur);
streamoff temp = file.tellg();
cout << "temp : " << temp << endl;
return true;
}else{
cout << "Error! Not enough memory to complete the task.\nPlease close some applications and try again.\n";
return false;
}
}
}
这就是我称之为的一个地方:
void printCities()
{
ifstream city ;
city.open("cities.txt", fstream::in);
if(city.is_open())
{
char *currCity;
int counter = 1;
while(readNextString(city , currCity))
{
cout << counter++ << ". " << currCity << endl;
delete[] currCity;
currCity = NULL;
}
if(city.eof())
cout << "There are no cities added.\n";
city.close();
}else
cout << "Error by opening 'cities.txt'.Make sure that the file exist and try again.\n";
}
希望我足够清楚。如果您发现一些其他错误或可能的错误,我会很高兴听到并从中学习。