c++ Qt向PHP接口POST文件流

Qt调用PHP写的接口,向其传递图片文件,并保存在服务器。

二进制文件无法直接传递,Qt采用Base64进行编码发送,PHP解码保存为文件。

注意:PHP收到数据之后会将POST过来的数据中的加号(+)替换为空格,造成接收到的数据不全,无法正常还原的问题,这里采用在PHP解码之前先将所有空格替换为+号的方法。

 Qt文件:

    //Qt文件

    QFile file("1.jpg");

    if(!file.open (QIODevice::ReadOnly)){

        qDebug()<<"file open failed.";

        return;

    }

    QByteArray data=file.readAll ();

    file.close ();

    QNetworkRequest req(QUrl("http://localhost:88/index.php"));

    networkMgr->post (req,"fileData="+data.toBase64 ()+"");

PHP文件:

<?php

$recContent=$_POST['fileData'];

$data=base64_decode(str_replace(" ","+",($recContent)));

file_put_contents("1.jpg", $data);

?>

 

 

 

你可能感兴趣的:(post)