zlib开发笔记(一):zlib库介绍、编译和工程模板

前言

  Qt使用一些压缩解压功能,介绍过libzip库编译,本篇说明zlib库。

zlib库

  zlib被设计为一个免费的,通用的,法律上不受限制的-即不受任何专利保护的无损数据压缩库,几乎可以在任何计算机硬件和操作系统上使用。

zlib编译

步骤一:解压

zlib开发笔记(一):zlib库介绍、编译和工程模板_第1张图片

步骤二:Cmake配置(mingw32版本)

zlib开发笔记(一):zlib库介绍、编译和工程模板_第2张图片

步骤三:生成工程

zlib开发笔记(一):zlib库介绍、编译和工程模板_第3张图片

步骤四:命令行编译

zlib开发笔记(一):zlib库介绍、编译和工程模板_第4张图片

步骤五:安装install

zlib开发笔记(一):zlib库介绍、编译和工程模板_第5张图片

模块化

zlib开发笔记(一):zlib库介绍、编译和工程模板_第6张图片

Demo

void ZlibManager::testEnv()
{
    QString fileName = "1.txt";
    QString outFileName = "1.txt_zip";
    // 打开文件,读取进入内存
    QFile file(fileName);
    if(!file.open(QIODevice::ReadOnly))
    {
        LOG;
        return;
    }
    QByteArray byteArray = file.readAll();
    LOG << byteArray.size();
    byteArray.append((char)0x00);
    LOG << "origin size:" << byteArray.size() << ":" << QString(byteArray);
    file.close();
    // 计算压缩后的文件大小
    int len = compressBound(byteArray.size());
    LOG << len << (uLong)byteArray.size();
    QByteArray compressByteArray = QByteArray(len, 0x00);
    int ret = compress((uchar *)compressByteArray.data(), (uLong *)&len, (uchar *)byteArray.data(), (uLong)byteArray.size());
    LOG << ret << len;
    if(Z_OK == ret)
    {
        LOG << "Succeed to compress" << byteArray.size() << "to" << len;
    }
    //  压缩后存入文件
    QFile outFile(outFileName);
    if(!outFile.open(QIODevice::WriteOnly | QIODevice::Truncate))
    {
        LOG;
        return;
    }
    outFile.write(compressByteArray, len);
    outFile.close();

    LOG << QString(compressByteArray.mid(0, len).toHex(' '));
    // 解压
    QByteArray unCompressByteArray = QByteArray(1024, 0x00);
    // 入坑一 unCompressLen传入的时候,作为指示缓存区的长度,运行完后,作为传出实际的长度
    int unCompressLen = unCompressByteArray.size();
    LOG << unCompressByteArray.size();
    ret = uncompress((uchar *)unCompressByteArray.data(), (uLong *)&unCompressLen, (uchar *)compressByteArray.data(), (uLong)len);
    LOG << ret << unCompressLen << len;
    if(Z_OK == ret)
    {
        LOG << "Succeed to uncompress" << compressByteArray.size() << "to" << unCompressLen;
    }

    // 解压后的存文文件 2.txt
    QString fileName2 = "2.txt";
    QFile file2(fileName2);
    if(!file2.open(QIODevice::WriteOnly | QIODevice::Truncate))
    {
        LOG;
        return;
    }
    file2.write(unCompressByteArray, unCompressLen);
    file2.close();
    LOG << "restore:" << QString(unCompressByteArray.mid(0, unCompressLen));
} 

运行结果

zlib开发笔记(一):zlib库介绍、编译和工程模板_第7张图片

工程模板v1.0.0

  对应工程模板:zlibDemo_v1.0.0_基础模板_测试压缩解压.rar
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/u...
https://www.github.com/threeb...
http://github.com/threebb1/ut...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...
https://github.com/threebb1/p...
https://www.github.com/threeb...
http://github.com/threebb1/pq...

你可能感兴趣的:(zlib)