0

不确定有多少人使用 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 文件的方法吗?

谢谢!

4

1 回答 1

0

为了回答我自己的问题,我的问题似乎是我的 Qt 项目文件中 quazip 库的相对路径解析之一。当使用相对路径在 .pro 中指定库时,必须记住 Qt 在运行时从二进制文件的位置解析相对库路径。另一方面,我是从 .pro(和我的代码库)位置的角度指定库的位置。一旦纠正,我的错误就减轻了。

于 2014-08-20T10:22:17.997 回答