How to read file content into istringstream?(如何将文件内容读入 istringstream?)
问题描述
为了提高读取文件的性能,我尝试将一个大(几 MB)文件的全部内容读入内存,然后使用 istringstream 访问信息.
In order to improve performance reading from a file, I'm trying to read the entire content of a big (several MB) file into memory and then use a istringstream to access the information.
我的问题是,读取这些信息并将其导入"到字符串流中的最佳方式是什么?这种方法的一个问题(见下文)是,在创建字符串流时,缓冲区被复制,内存使用量加倍.
My question is, which is the best way to read this information and "import it" into the string stream? A problem with this approach (see bellow) is that when creating the string stream the buffers gets copied, and memory usage doubles.
#include <fstream>
#include <sstream>
using namespace std;
int main() {
ifstream is;
is.open (sFilename.c_str(), ios::binary );
// get length of file:
is.seekg (0, std::ios::end);
long length = is.tellg();
is.seekg (0, std::ios::beg);
// allocate memory:
char *buffer = new char [length];
// read data as a block:
is.read (buffer,length);
// create string stream of memory contents
// NOTE: this ends up copying the buffer!!!
istringstream iss( string( buffer ) );
// delete temporary buffer
delete [] buffer;
// close filestream
is.close();
/* ==================================
* Use iss to access data
*/
}
推荐答案
std::ifstream
有一个方法 rdbuf()
,它返回一个指向 filebuf
.然后你可以把这个 filebuf
push"到你的 stringstream
中:
std::ifstream
has a method rdbuf()
, that returns a pointer to a filebuf
. You can then "push" this filebuf
into your stringstream
:
#include <fstream>
#include <sstream>
int main()
{
std::ifstream file( "myFile" );
if ( file )
{
std::stringstream buffer;
buffer << file.rdbuf();
file.close();
// operations on the buffer...
}
}
正如 Martin York 在评论中所说,这可能不是最快的解决方案,因为 stringstream
的 operator<<
将逐个字符读取 filebuf.您可能想检查他的答案,他在那里使用 ifstream
的 read
方法,然后设置 stringstream
缓冲区指向之前分配的内存.
As Martin York remarks in the comments, this might not be the fastest solution since the stringstream
's operator<<
will read the filebuf character by character. You might want to check his answer, where he uses the ifstream
's read
method as you used to do, and then set the stringstream
buffer to point to the previously allocated memory.
这篇关于如何将文件内容读入 istringstream?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将文件内容读入 istringstream?


基础教程推荐
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 这个宏可以转换成函数吗? 2022-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 我有静态或动态 boost 库吗? 2021-01-01