要實現文件上傳功能,可以使用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
文件中。
請注意,以上代碼僅為演示目的,實際生產環境中需要添加更多的錯誤處理和安全性檢查。