海子的乐园

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

既然学习C++,就想以纯粹的C++方式读写文件内容。

功能实现代码段如下:

 

 1 #include <iostream>
 2 #include <fstream>
 3 #include <string>
 4 using namespace std;
 5 
 6 bool GetALineData()
 7 {
 8     ifstream in("I:\\testConsole.txt");
 9     // failbit/badbit 有效时,置位
10     if (in.fail()) 
11         cout << "Open file error!" << endl;
12 
13     ofstream out("I:\\log.txt", ofstream::app);
14 
15     string tmpStr;
16     unsigned int tmpInt;
17 
18     // 逐个读出I:\\testConsole.txt中的数据(以空格、换行符、制表符分隔开)
19     while (in >> tmpStr)
20     {
21         tmpInt = atoi(tmpStr.c_str());
22         cout << tmpInt << endl;
23         out << tmpInt << endl;
24     }
25 
26     in.close();
27 
28     return 0;
29 }

 

posted on 2014-04-14 00:27  海子的乐园  阅读(501)  评论(0编辑  收藏  举报