How to read a growing text file in C++?(如何在 C++ 中读取不断增长的文本文件?)
问题描述
我正在尝试从一个正在增长的文件中读取数据(类似于 tail -F 所做的),但我的代码肯定存在一些问题:
I am trying to read from a file which is growing (something similar to what tail -F does), but there must be some problems with my code:
string log, logFile("test.log");
size_t p = 0;
while(true)
{
ifstream ifs(logFile.c_str());
ifs.seekg(p); //*1
while(ifs.eof() == false)
{
getline(ifs, log);
cout << log << endl;
p = ifs.tellg(); //*2
}
nanosleep(&pause, NULL);
}
如果没有//*1 和//*2 行,日志文件会被正确读取到其末尾,但如果添加新行,则不会发生任何事情.
Without the lines //*1 and //*2, the log file is correctly read up to its end, but if new lines are added nothing happens.
使用 seekg 和 tellg,我试图存储文件的当前结束位置,这样当我重新打开它时,我就可以直接去那里阅读已添加的内容.
With seekg and tellg I am trying to store the current end position of the file, so that when I reopen it I can go strait there and read what has been added.
我想知道我的代码有什么问题,以及是否真的有必要为此目的关闭并重新打开同一个文件.
I would like to know what is wrong in my code, and if it is really necessary to close and reopen the same file for this purpose.
谢谢.
推荐答案
由于这些答案都不起作用,我想出了一个可行的方法...
Since none of these answers worked, i came up with one that does work...
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int main()
{
string log, logFile("test.txt");
std::streamoff p = 0;
ifstream ifs(logFile.c_str());
while(true)
{
ifs.seekg(p); //*1
while (getline(ifs, log))
{
cout << log << endl;
if(ifs.tellg() == -1) p = p + log.size();
else p = ifs.tellg();
}
ifs.clear();
}
}
这篇关于如何在 C++ 中读取不断增长的文本文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 C++ 中读取不断增长的文本文件?
基础教程推荐
- 初始化列表*参数*评估顺序 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- CString 到 char* 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
