2

我想从 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();

回复是“QNetworkReply”

4

2 回答 2

2

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

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

而是使用QNetworkReply::readand QFile::write

char buffer[2048];
qint64 size = reply->read(buffer, sizeof(buffer));
offline_ip_adress_calculator.write(buffer, size);
于 2013-08-01T13:24:46.960 回答
2

这是更清晰和纯粹的Qt解决方案:

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

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

于 2017-03-03T07:37:04.130 回答