不确定有多少人使用 QuaZip 在 Qt 中打开和处理 zip 文件,但我正在尝试使用以下代码打开一个 zip 文件:
#include "quazip/JlCompress.h"
#include <QDebug>
#include <QtWidgets>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ConnectActions();
...
}
bool MainWindow::LoadArchive(const QString &filename)
{
//qDebug() << "STUB: LoadArchive()";
QuaZip archive_handle(filename);
//Attempt to open the file, return false and display error message
if(!archive_handle.open(QuaZip::mdUnzip)) {
qDebug() << "Archive does not exist or is damaged!";
return false;
}
//Perform some sort of operation, such as loading the images out of the archive
//tidy up
archive_handle.close();
return true;
}
它给了我错误:
QIODevice::open: File access not specified
Archive does not exist or is damaged!
***Error in `/home/adrian/Development/build-CinemaStrips-Desktop_Qt_5_3_GCC_64bit-Debug/CinemaStrips': free(): invalid pointer: 0x00007f2c4b709ce0***
The program has unexpectedly finished.
我不知道我是否遗漏了一个步骤,因为 API 说明非常简单,并且我在代码中逐字逐句地遵循了它们。如您所见,我使用的是 Qt5;QuaZip 仅适用于 4 吗?最后,还有另一种在 Qt 中处理 zip 文件的方法吗?
谢谢!