gpt4 book ai didi

php - 使用 C++ 和 Qt 下载二进制文件

转载 作者:搜寻专家 更新时间:2023-10-31 01:08:28 26 4
gpt4 key购买 nike

我想从 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”

最佳答案

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

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

改为使用 QNetworkReply::read QFile::write :

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

关于php - 使用 C++ 和 Qt 下载二进制文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17995004/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com