首先,我很抱歉,但我不会说英语。
我的问题是我希望我的流回到文件的开头。因此,我在我的流对象上应用clear()
方法,但在此之后,getline()
始终返回0
(false
)。
我没有找到解决方案。有人对这个问题有所了解吗?
所以,这是我的代码:
void Tools::tokenizeAll(string filename, string separator){
char str[LINESIZE] = {0};
int lineNumber = 0, j = 0;
ifstream stream;
stream.open(filename.c_str(), std::ifstream::in);
if(stream){
while(stream.getline(str, LINESIZE)){
lineNumber++;
}
//allocation dynamique du tableau à deux dimensions
string** elementsTable = NULL;
elementsTable = new string*[lineNumber];
for( int i = 0 ; i < lineNumber ; i++ ) elementsTable[i] = new string[4];
std::cout << " good()=" << stream.good() << endl;
std::cout << " eof()=" << stream.eof() << endl;
std::cout << " fail()=" << stream.fail() << endl;
std::cout << " bad()=" << stream.bad() << endl;
cout << endl;
stream.clear();
std::cout << " good()=" << stream.good() << endl;
std::cout << " eof()=" << stream.eof() << endl;
std::cout << " fail()=" << stream.fail() << endl;
std::cout << " bad()=" << stream.bad() << endl;
cout << endl;
cout << stream.getline(str, LINESIZE) << endl;//return 0
}
else cout << "ERREUR: Impossible d'ouvrir le fichier en lecture." << endl;
}
非常感谢(感谢你警告我我的英语错误;))
答案 0 :(得分:2)
调用clear()
仅重置错误标志。到&#34;倒带&#34;在开始的流程中,您还需要使用seekg
:
stream.seekg(0, std::ios::beg)
请注意,此操作也可能失败,因此您可能需要检查错误。