使用c ++和Qt下载二进制文件

时间:2013-08-01 13:10:37

标签: php c++ qt

我想从php脚本下载* .exe文件并执行它。

下载文件后,我可以'再执行它。当我查看文件时,里面有很多问号。

PHP脚本:

header('Content-Description: File Transfer');
header('Content-Type: application/x-download');
header('Content-Disposition: attachment; filename='.basename($file_name));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file_name));
ob_clean();
flush();
readfile($file_name);
exit;

C ++:

 QFile offline_ip_adress_calculator(QDir::currentPath() + "/offline_ip_adress_calculator.exe");

    //Check if the File exists and clear its content
    if(!offline_ip_adress_calculator.open(QFile::ReadWrite | QIODevice::Truncate))
    {
        msgBox.critical(this, "I/O error", "Can't open offline_ip_adress_calculator.exe for update");
        return;
    }

    QDataStream text_stream(&offline_ip_adress_calculator);
    while(reply->size() > 0)
    {
        QByteArray replystring = reply->read(2048);
        text_stream << replystring;
    }

    offline_ip_adress_calculator.close();

回复是&#34; QNetworkReply&#34;

2 个答案:

答案 0 :(得分:2)

问题在于您将二进制数据视为文本。

当您使用QDataStream::operator<<时,来自replystring的数据会像字符串一样处理。但它不是文本字符串,只是一系列字节。

而是使用QNetworkReply::readQFile::write

char buffer[2048];
qint64 size = reply->read(buffer, sizeof(buffer));
offline_ip_adress_calculator.write(buffer, size);

答案 1 :(得分:2)

这里有更清晰,更纯粹的Qt解决方案:

   QByteArray downloadedData = reply->readAll();
   QFile file("somefile");
   file.open(QIODevice::ReadWrite);
   file.write(downloadedData.data(),downloadedData.size());
   file.close();

我已经尝试了@ SomeProgrammerDude的解决方案。我以这种方式下载了一个png文件,只获得了图像的上半部分而且令人惊讶的是文件大小正好是2048或我设置的任何数字。