我需要帮助来解决我的问题
我想阅读一个文本文件并使用指针进行处理
为了测试,我有3个文件:a,b和c:
a.txt包含1行,如 29 RTY3050027 / C BYZ23451 180 5.790 30.654
b.txt包含10行
c.txt包含1000行
我的代码是:
#include <fstream>
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
ifstream leggiROF("a.txt");
leggiROF.seekg(0, ios::end);
long int dimensione=leggiROF.tellg();
cout << "File length: " << dimensione << " bytes" << endl;
leggiROF.seekg(0, ios::beg);
char *pLeggiROF=nullptr;
pLeggiROF=new char [dimensione];
// if RAM is available
leggiROF.read(pLeggiROF, dimensione);
if(leggiROF)
{
cout << "all characters read successfully.\n";
cout << pLeggiROF << endl;
}
else
/* ADDED LINES */
int offSet=(dimensione-(dimensione-leggiROF.gcount()));
cout << "Error: only " << leggiROF.gcount() << " bytes can be read!" << endl;
leggiROF.read(pLeggiROF, offSet);
cout << pLeggiROF << endl;
leggiROF.close();
delete[] pLeggiROF;
pLeggiROF=nullptr;
return 0;
}
现在我有3个不同文件的结果:
a.txt 1行
29 RTY3050027 / C BYZ23451 180 5.790 30.654
文件长度:41个字节
所有字符读成功。
29 RTY3050027 / C BYZ23451 180 5.790 30.654
b.txt 10行
29 RTY3050027 / C BYZ23451 180 5.790 30.654
....
文件长度:412字节
错误:只能读取403个字节
c.txt 1000行
29 RTY3050027 / C BYZ23451 180 5.790 30.654
....
文件长度:41480字节
错误:只能读取40481个字节
答案 0 :(得分:0)
我解决了修改if else循环的问题(参见代码)。我介绍了一个offSet变量。唯一的问题是大文件的最后一行(1000行)是污垢。
10 RYN123457 / 2 BYZ34512 270 32.90721.221ïû┤öÅh
在最后一个号码(21.221)之后看到奇怪的字符