使用QuaZIP压缩文件



我正在寻找一些使用QuaZIP在Qt中压缩文件的示例。我试过这个代码,但它不起作用。我收到一个分段错误。

JlCompress::compressFiles(zipfilename,filenames);//zipfilename is a qstring and filenames a QStringList

压缩文件之前应该先打开文件吗?

问题已解决,我删除了quazip安装,然后手动安装:

I downloaded the source code from http://sourceforge.net/projects/quazip/files/latest/download
tar xvfz quazip-0.7.1.tar.gz
cd quazip-0.7.1
qmake "PREFIX=/usr/local" "LIBS+=-lz"
make
make install

之后,我使用apt-get安装了libquazip-qt5-*包最后,我使用在我的专业文件中链接了quazip

LIBS += -lquazip -lz

相关内容

  • 没有找到相关文章

最新更新