转载至http://c.biancheng.net/view/1537.html
很多时候用户可能会这样操作,打开一个文件,处理其中的所有数据,然后将文件倒回到开头,再次对它进行处理,但是这可能有点不同。例如,用户可能会要求程序在数据库中搜索某种类型的所有记录,当这些记录被找到时,用户又可能希望在数据库中搜索其他类型的所有记录。
提供了许多不同的成员函数,可以用来在文件中移动。其中的一个方法如下:
seekg(offset, place);
这个输入流类的成员函数的名字 seekg 由两部分组成。首先是 seek(寻找)到文件中的某个地方,其次是 "g" 表示 "get",指示函数在输入流上工作,因为要从输入流获取数据。
要查找的文件中的新位置由两个形参给出:新位置将从由 place 给出的起始位置开始,偏移 offset 个字节。offset 形参是一个 long 类型的整数,而 place 可以是 ios 类中定义的 3 个值之一。起始位置可能是文件的开头、文件的当前位置或文件的末尾,这些地方分别由常量 ios::beg、ios::cur 和 ios::end 表示。
有关在文件中移动的更多信息将在后面的章节中给出,目前先来关注如何移动到文件的开头。要移到文件的开始位置,可以使用以下语句:
seekg(0L,ios::beg);
以上语句表示从文件的开头位置开始,移动 0 字节,实际上就是指移动到文件开头。
注意,如果目前已经在文件末尾,则在调用此函数之前,必须清除文件末尾的标志。因此,为了移动到刚读取到末尾的文件流 dataln 的开头,需要使用以下两个语句:
dataIn.clear();
dataIn.seekg(0L, ios::beg);
下面的程序演示了如何倒回文件的开始位置。它首先创建一个文件,写入一些文本,并关闭文件;然后打开文件进行输入,一次读取到最后,倒回文件开头,然后再次读取:
<pre class="cpp sh_cpp snippet-formatted sh_sourceCode">
1. //Program shows how to rewind a file. It writes a text file and opens it for reading, then rewinds
2. // it to the beginning and reads it again.
3. #include <iostream>
4. #include <fstream>
5. u[sin](http://c.biancheng.net/ref/sin.html)g namespace std;
7. int main()
8. {
9. // Variables needed to read or write file one character at a time char ch;
10. fstream ioFile("rewind.txt", ios::out);
11. // Open file.
12. if (!ioFile)
13. {
14. cout << "Error in trying to create file";
15. return 0;
16. }
17. // Write to file and close
18. ioFile << "All good dogs" << endl << "growl, bark, and eat." << endl;
19. ioFile.close();
20. //Open the file
21. ioFile.open ("rewind.txt", ios::in);
22. if (!ioFile)
23. {
24. cout << "Error in trying to open file";
25. return 0;
26. }
27. // Read the file and echo to screen
28. ioFile.get(ch);
29. while (!ioFile.fail())
30. {
31. cout.put(ch);
32. ioFile.get(ch);
33. }
34. //Rewind the file
35. ioFile.clear();
36. ioFile.seekg(0, ios::beg);
37. //Read file again and echo to screen
38. ioFile.get(ch);
39. while (!ioFile.fail())
40. {
41. cout.put(ch);
42. ioFile.get(ch);
43. }
44. return 0;
45. }
</pre>
程序输出结果:
All good dogs
growl, bark, and eat.
All good dogs
growl, bark, and eat.
网友评论