-3
#include<fstream>
int main()
{
ifstream fFeedList;
fFeedList.open("/ra/file");
return 0;
}
如何在C++中使用.bz2讀取文件?謝謝!!C++使用bunzip2讀取文件
#include<fstream>
int main()
{
ifstream fFeedList;
fFeedList.open("/ra/file");
return 0;
}
如何在C++中使用.bz2讀取文件?謝謝!!C++使用bunzip2讀取文件
看看了Boost iostreams庫,它可以解壓縮的bZIP等
你SSCCE相當,呃,簡陋。 – Devolus
我從來沒有讀過bz2文件。如何在C++中讀取它?謝謝!! – user2565056
您可以使用libbzip2中的C接口[此處](http://bzip.org/1.0.5/bzip2-manual-1.0.5.html)。或者使用[Boost](http://www.boost.org/doc/libs/1_37_0/libs/iostreams/doc/classes/bzip2.html)。下次你可能想給Google一個嘗試...... – jpw