赞
踩
目录
4.3.6、使用Qtcreator打开quazip源码pro文件
- #include "squazip.h"
- #include "../quazip/JlCompress.h"
- #include <QtConcurrent/QtConcurrent>
-
- SQuaZip::SQuaZip(QObject *parent) : QObject(parent)
- {
- }
-
- void SQuaZip::saveAsFile(const QString &path, const QString &zipfile)
- {
- QtConcurrent::run(this, &SQuaZip::zipDir, path, zipfile);
- }
-
- void SQuaZip::loadFromFile(const QString &path, const QString &zipfile)
- {
- QtConcurrent::run(this, &SQuaZip::unzipDir, zipfile, path);
- }
-
- /**
- * @brief SQuaZip::zipDir
- * @param path 待压缩目录
- * @param zipfile 压缩后的文件
- * @return
- */
- bool SQuaZip::zipDir(const QString &path, const QString &zipfile)
- {
- bool bok = JlCompress::compressDir(zipfile, path, true);
- return bok;
- }
-
- /**
- * @brief SQuaZip::unzipDir
- * @param zipfile 待解压缩的文件
- * @param path 解压缩存放的目录
- * @return
- */
- bool SQuaZip::unzipDir(const QString &zipfile, const QString &path)
- {
- bool bok = !JlCompress::extractDir(zipfile, path).isEmpty();
- qDebug() << "??::" << bok;
- return bok;
- }
码云源码分享:
https://gitee.com/ShaShiDiZhuanLan/Demo_QuaZip
Github源码分享:
https://github.com/ShaShiDiZhuanLan/Demo_QuaZip_Qt
Qt使用一些压缩解压功能,探讨过libzip库,zlib库,libzip库比较原始,还有其他库,都比较基础,而在基础库之上,又有高级封装库,Qt中的QuaZIP是一个很好的选择。
QuaZIP是Gilles Vollant的ZIP / UNZIP软件包的简单C ++包装,可用于访问ZIP档案。
依赖库:zlib库
Qt4无论如何都依赖于zlib,但是您将需要zlib标头来编译QuaZIP。使用Qt5有时,您还需要zlib库(例如,在Windows上)。
官方:http://quazip.sourceforge.net
本文是5.9.3版本,请自行选择电脑上安装的Qt版本
- #include <QApplication>
- #include "QuaZibManager.h"
-
- #include <QDebug>
- #define LOG qDebug()<<__FILE__<<__LINE__
-
- int main(int argc, char *argv[])
- {
- QApplication a(argc, argv);
-
- LOG;
-
- QuaZibManager quaZibManager;
- QStringList list = quaZibManager.getZipFileList("testFile.zip");
-
- LOG;
-
- for(int index = 0; index < list.size(); index++)
- {
- LOG << list.at(index);
-
- }
-
- LOG;
- return a.exec();
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。