大家好,又见面了,我是你们的朋友全栈君。
文件输入流(ifstream)读到文件尾之后,调用seekg 重定向 读pos
类似于以下代码片段:
//read whole file
while(ifs.readline(str,strLen)){
std::cout << line++ << " : "<<str<<std::endl;
}
ifs.seekg(0,std::ios::beg);//rewind to beginning of the file //1
ifs.clear();//clear eof flag //2
std::cout <<"+++++++++++++++++++++++++++++++"<<std::endl;
//read whole file again
line = 0;
while(ifs.readline(str,strLen)){//发生错误,不能继续读文件
std::cout << line++ << " : "<<str<<std::endl;
}
发现重新读文件的时候 发生错误,不能继续读文件。
查看seekg的说明之后,发现
如果 ifstream 的 eofbit 没有被清除,seekg 会失败。
改成如下代码之后,程序正常了。
//read whole file
while(ifs.readline(str,strLen)){
std::cout << line++ << " : "<<str<<std::endl;
}
ifs.clear();//clear eof flag first //2
ifs.seekg(0,std::ios::beg);//then rewind to beginning of the file //1
std::cout <<"+++++++++++++++++++++++++++++++"<<std::endl;
//read whole file again
line = 0;
while(ifs.readline(str,strLen)){//发生错误,不能继续读文件
std::cout << line++ << " : "<<str<<std::endl;
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/130992.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...