0

我正在尝试用 C++ 从 Internet 下载文件。将下载的内容保存到 HInternet 实例中。

我还填充了 HInternet 实例的标头信息。那看起来像

Header contents:
HTTP/1.1 200 OK
Cache-Control: no-cache
Date: Fri, 24 Nov 2017 07:00:26 GMT
Pragma: no-cache
Content-Length: 71156
Content-Type: text/html
Expires: -1
Server: Microsoft-IIS/8.0
Content-Disposition: attachment; filename=642078_3855u.zip
X-AspNet-Version: 4.0.30319

Error 0 has occurred.

现在我正在尝试将 642088_3855u.zip 文件复制到某个位置。

所以,我尝试了,

if (bResults)
{
    do
    {
        // Check for available data.
        dwSize = 0;
        if (!WinHttpQueryDataAvailable(hRequest, &dwSize))
        {
            dwLastError = GetLastError();
            break;
        }

        // No more available data.
        if (!dwSize)
            break;

        // Allocate space for the buffer.
        pszOutBuffer = new char[dwSize + 1];
        if (!pszOutBuffer)
        {
            bError = true;
            break;
        }

        FILE *pfDestination = NULL;
        _wfopen_s(&pfDestination, strDestinationFolder + L"\\" + L"642078_3855u.zip", L"w+b");
        if (pfDestination == NULL)
        {
            bError = true;
            break;
        }

        // Read the Data.
        ZeroMemory(pszOutBuffer, dwSize + 1);
        if (WinHttpReadData(hRequest, (LPVOID)pszOutBuffer,
            dwSize, &dwDownloaded))
        {
            fwrite(pszOutBuffer, 1, dwDownloaded, pfDestination);
        }

        // Free the memory allocated to the buffer.
        delete[] pszOutBuffer;
        fclose(pfDestination);
        // reported that there are bits to read.
        if (!dwDownloaded)
            break;

    } while (dwSize > 0);
}

我没有收到任何错误,如果 zip 的实际大小为 72kb,但它创建的 zip 文件为 4kb,当我尝试打开 zip 文件时,我收到错误 Invalid zip file。

请注意:zip 文件也包含可执行文件。

任何我做错的建议。

谢谢,

4

0 回答 0