我想解压缩文件并将其内容写入字符串流。
这是我试过的代码:
string readGZipLog () {
try {
using namespace boost::iostreams;
ifstream file(currentFile.c_str(), std::ios_base::in | std::ios_base::binary);
boost::iostreams::filtering_istream in;
in.push(gzip_decompressor());
in.push(file);
std::stringstream strstream;
boost::iostreams::copy(in, strstream);
return strstream.str();
} catch (std::exception& e) {
cout << e.what() << endl;
}
}
void writeGZipLog (char* data) {
try {
using namespace boost::iostreams;
std::ofstream file( currentFile.c_str(), std::ios_base::out | std::ios_base::binary );
boost::iostreams::filtering_ostream out;
out.push( gzip_compressor() );
out.push(file);
std::stringstream strstream;
strstream << data;
boost::iostreams::copy( strstream, data );
} catch (std::exception& e) {
cout << e.what() << endl;
}
}
它编译时没有任何警告(当然还有错误),但函数readGZipLog()
在运行时崩溃:
gzip error
./build: line 3: 22174 Segmentation fault ./test
./build
是./test
自动编译和启动应用程序的脚本
我检查了文件:它包含一些东西,但我无法使用gunzip
. 所以我不确定压缩是否正常工作,以及这是否与gzip error
Boost.
你能告诉我错误在哪里吗?
谢谢你的帮助!
保罗