boost-iostreams
How to build boost iostreams with gzip and bzip2 support on Windows
How do I build boos开发者_如何学编程t\'s iostreams library with gzip and bzip2 support?I am no expert, but this worked for me.[详细]
2023-04-01 07:45 分类:问答Boost iostream: how to turn ifstream into memory mapped file?
What I want is simple to open file for reading as memory mapped file - in order to access it with much more speed in future (example: we open file read it to end, wait and read it again and again) Mea[详细]
2023-03-30 05:24 分类:问答Using boost IOStreams with std::ostream_iterator
I tried to use an array-device based stream and wantet to pass the stream to std::ostream_iterator or std::istream_iterator, but unfortunately, I get a compilation error with gcc 4.3.5.[详细]
2023-03-20 14:21 分类:问答Using boost::iostreams::mapped_file_source with wide character strings
If I instantiate a mapped_file_source (boost 1.46.1 ) with a narrow character string as in the following I don\'t have a problem:[详细]
2023-03-19 16:46 分类:问答How to prevent iostreams::mapped_file_sink from creating executable txt files
EDIT: code sample is broken, it is missing .is_open(), please DON\'T use it. I have a rather strange question. I use boost iostreams and they work awesome, but the problem is that files that program[详细]
2023-03-09 07:37 分类:问答boost iostream problem
I\'m trying to decompress a gzip\'d string inside boost using the following code std::string DecompressString(const std::string &compressedString)[详细]
2023-02-18 17:39 分类:问答boost zlib problem
I\'m having a problem with the zlib libraries in boost under VS 2010. I built the libraries and the appropriate dlls/libs were generated in the boost/stage/lib folder. I added the .dlls into my progra[详细]
2023-02-18 15:04 分类:问答Help in managing a iostream
Suppose that I get a stringbuf with some content that include certain character sequences who must be removed:[详细]
2023-02-17 17:44 分类:问答how to convert bash script to C++ using boost::iostreams
I\'m trying to convert the following bash code into C++ using boost::iostreams: #!/usr/bin/bash ( gzip -cd file1.ext.gz[详细]
2023-02-13 01:39 分类:问答Crash if I try to copy uncompressed filtering_istream to stringstream
I want to uncompress a file and write its content into a stringstream. This is the code I tried: string readGZipLog () {[详细]
2023-02-05 08:16 分类:问答