日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

JAVA中有許多成熟的HTTP框架可以使用,例如Spring?.NETty等。這些框架提供了各種HTTP處理器和工具類,使得HTTP請求和響應處理變得更加容易和高效。下面是一個簡單的Java代碼示例,演示如何使用Java處理HTTP請求和響應:

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.ServerSocket;
import java.net.Socket;

public class SimpleHttpServer {
    private static final int PORT = 8080;

    public static void main(String[] args) throws IOException {
        ServerSocket serverSocket = new ServerSocket(PORT);
        System.out.println("服務器已啟動...");

        while (true) {
            Socket socket = serverSocket.accept(); // 等待客戶端連接
            HttpRequest req = new HttpRequest(socket.getInputStream()); // 解析HTTP請求
            HttpResponse resp = new HttpResponse(socket.getOutputStream()); // 創建HTTP響應對象
            
            // 處理HTTP請求并發送響應結果
            String requestMethod = req.getMethod();
            if ("GET".equalsIgnoreCase(requestMethod)) {
                handleGetRequest(req, resp);
            } else if ("POST".equalsIgnoreCase(requestMethod)) {
                handlePostRequest(req, resp);
            }
            
            socket.close();
        }
    }

    // 處理GET請求
    private static void handleGetRequest(HttpRequest req, HttpResponse resp)
            throws IOException {
        String path = req.getPath();
        byte[] body = null;
        if ("/hello".equalsIgnoreCase(path)) {
            body = "Hello World!".getBytes();
        } else {
            resp.setStatus(404);
            body = "Resource Not Found".getBytes();
        }
        resp.setBody(body);
        resp.write();
    }

    // 處理POST請求
    private static void handlePostRequest(HttpRequest req, HttpResponse resp)
            throws IOException {
        // TODO: 實現對POST請求的處理
    }
}

class HttpRequest {
    private String method;
    private String path;

    public HttpRequest(InputStream input) throws IOException {
        byte[] buffer = new byte[1024];
        int len = input.read(buffer);
        if (len > 0) {
            String[] requestLine = new String(buffer, 0, len).split(" ");
            method = requestLine[0];
            path = requestLine[1];
        }
    }

    public String getMethod() {
        return method;
    }

    public String getPath() {
        return path;
    }
}

class HttpResponse {
    private OutputStream output;
    private int status = 200;
    private byte[] body;

    public HttpResponse(OutputStream output) {
        this.output = output;
    }

    public void setStatus(int status) {
        this.status = status;
    }

    public void setBody(byte[] body) {
        this.body = body;
    }

    public void write() throws IOException {
        StringBuilder sb = new StringBuilder();
        sb.Append("HTTP/1.1 ").append(status).append("rn")
          .append("Content-Type: text/plainrn")
          .append("Content-Length: ").append(body.length).append("rn")
          .append("rn");
        output.write(sb.toString().getBytes());
        output.write(body);
        output.flush();
    }
}

在這個例子中,我們創建了一個簡單的HTTP服務器來監聽指定端口的HTTP請求。當有客戶端連接進來時,我們會解析HTTP請求并根據請求方法類型(GET或POST)來分發不同的處理方法,然后根據處理結果構建HTTP響應并將其返回給客戶端。

HttpRequest和HttpResponse類分別代表了一個HTTP請求對象和HTTP響應對象。它們提供了一些方法來解析HTTP請求的參數和頭部,并構建HTTP響應消息的狀態和內容。在handleGetRequest和handlePostRequest方法中,我們可以編寫自己的業務邏輯代碼來實現對GET和POST請求的處理。需要注意的是,在處理HTTP請求和響應時,我們還需要確保線程安全,避免線程之間的資源競爭問題。

分享到:
標簽:請求 HTTP
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定