C++获取文本文件字节数的一个小方法
1 调用ifstream打开一个文件
2 调用seekg将get pointer置为文件末尾,seekg(0, ios::end)
3 调用tellg获取总字节数,实际上获取的是get pointer相对于文件头的偏移字节数
4 重置get pointer,使其指向文件头,以便执行其他操作
#include <iostream>
#include <fstream>
using namespace std;
int main () {
int length;
char * buffer;
ifstream is;
is.open ("test.txt", ios::binary );
// get length of file:
is.seekg (0, ios::end);
length = is.tellg();
is.seekg (0, ios::beg);
// allocate memory:
buffer = new char [length];
// read data as a block:
is.read (buffer,length);
is.close();
cout.write (buffer,length);
return 0;
}
本文介绍了一种使用C++读取文本文件并获取其字节数的方法。主要步骤包括:通过ifstream打开文件;使用seekg将指针置于文件末尾;调用tellg获取文件长度;最后将指针重置到文件开头。
951

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



