啥也别说,先上代码
/*
* File: readuntil.cpp
* Author: @肖武 <tsxw24@gmail.com>
*
* Created on 2013年8月30日, 上午10:44
*/
#include <iostream>
#include <fstream>
#include <string>
#include <unistd.h>
#include <ctime>
#include <cstdlib>
using namespace std;
int main(int argc, char* argv[]) {
if (argc != 3){
cout<<argv[0]<<" [in_file] [max_time]"<<endl;
return 1;
}
time_t max_time = atol(argv[2]);
ifstream ifs;
ifs.open(argv[1], ios::in);
if (!ifs) {
cout<<"open erro"<<endl;
return 1;
}
string row;
size_t seek;
time_t t;
do{
if (ifs.peek() == EOF) {
time(&t);
if (t>max_time){
break;
}
ifs.clear();
ifs.seekg(seek, ios::beg);
sleep(3);
continue;
}
getline(ifs, row);
cout<<row<<endl;
seek = ifs.tellg();
}while(1);
ifs.close();
return 0;
}
编译

本文展示了如何使用C++实现一个程序,该程序能够实时读取一个持续有增量内容写入的文本文件。程序会检查文件末尾,如果超过指定时间戳(如60秒)仍未发现新内容,程序将自动退出。
最低0.47元/天 解锁文章
1494

被折叠的 条评论
为什么被折叠?



