0

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

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

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

4

1 回答 1

0

问题已解决,我删除了 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

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

LIBS += -lquazip -lz
于 2016-04-19T07:34:52.407 回答