中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c++ post如何實現文件上傳

c++
小樊
108
2024-07-05 20:13:37
欄目: 編程語言

要實現文件上傳功能,可以使用C++編寫一個簡單的HTTP服務器,接收客戶端上傳的文件并保存到服務器端。

以下是一個簡單的C++ HTTP服務器示例代碼,可以實現文件上傳功能:

#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <boost/asio.hpp>

using namespace boost::asio;
using namespace boost::asio::ip;

class HttpServer {
public:
    HttpServer(io_service& io, short port)
        : acceptor_(io, tcp::endpoint(tcp::v4(), port)),
        socket_(io) {
        acceptor_.accept(socket_);
        handle_request();
    }

private:
    void handle_request() {
        boost::system::error_code error;
        streambuf request;
        read_until(socket_, request, "\r\n\r\n", error);

        std::istream request_stream(&request);
        std::string header;
        getline(request_stream, header);

        std::string method, path, version;
        request_stream >> method >> path >> version;

        if (method == "POST") {
            std::string line;
            while (getline(request_stream, line) && line != "") {
                if (line.find("Content-Length:") != std::string::npos) {
                    std::istringstream iss(line);
                    std::string content_length_str;
                    iss >> content_length_str >> content_length_;
                }
            }

            std::vector<char> body(content_length_);
            socket_.read_some(buffer(body), error);

            std::ofstream file("uploaded_file", std::ios::binary);
            file.write(&body[0], content_length_);
            file.close();
        }

        std::ostream response_stream(&response_);
        response_stream << "HTTP/1.1 200 OK\r\n";
        response_stream << "Content-Length: 0\r\n";
        response_stream << "\r\n";

        write(socket_, response_);
    }

    tcp::acceptor acceptor_;
    tcp::socket socket_;
    boost::asio::streambuf response_;
    size_t content_length_;
};

int main() {
    io_service io;
    HttpServer server(io, 8080);
    io.run();

    return 0;
}

在上面的代碼中,我們創建了一個簡單的HTTP服務器,監聽8080端口。當接收到客戶端的POST請求時,服務器會從請求中讀取上傳的文件內容并保存到服務器端的uploaded_file文件中。

要測試文件上傳功能,可以使用curl命令發送POST請求:

curl -X POST -H "Content-Type: application/octet-stream" --data-binary @file.txt http://localhost:8080

上面的命令會將file.txt文件上傳到我們的HTTP服務器,并保存到服務器端的uploaded_file文件中。

請注意,以上代碼僅為演示目的,實際生產環境中需要添加更多的錯誤處理和安全性檢查。

0
南和县| 股票| 河曲县| 乐平市| 蒙城县| 津市市| 咸丰县| 盱眙县| 阿合奇县| 祥云县| 修武县| 泰顺县| 赤峰市| 晋宁县| 襄樊市| 乌拉特后旗| 绵竹市| 津南区| 南通市| 孟津县| 陵川县| 慈溪市| 横山县| 丰宁| 吐鲁番市| 调兵山市| 木兰县| 双鸭山市| 岳西县| 翁牛特旗| 谢通门县| 乐东| 都江堰市| 贡觉县| 大埔县| 苍山县| 万全县| 彩票| 丰都县| 浮山县| 旬阳县|