91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java webserver-獲取請求協議和返回響應協議

發布時間:2020-08-04 07:10:19 來源:網絡 閱讀:229 作者:wx5d21d5e6e5ab1 欄目:編程語言

使用ServerSocket建立與瀏覽器的連接,獲取請求協議

public class Server {
    private ServerSocket serverSocket;
    public static void main(String[]args)
    {
        Server server=new Server();
        server.start();
    }
    //啟動服務
    public void start()
    {
        try {
            serverSocket=new ServerSocket(8888);
            receive();
        } catch (IOException e) {

        e.printStackTrace();
        System.out.println("服務器啟動失敗");
    }
}
//停止服務
public void stop()
{

}
//接受連接處理
public void receive()
{
    try {
        Socket client=serverSocket.accept();
        System.out.println("一個客戶端建立了連接");
        //獲取請求協議
        InputStream is =client.getInputStream();
        byte[] datas=new byte[1024*1024];
        int len=is.read(datas);  //讀取完畢,并返回長度
        String requestInfo =new String(datas,0,len);
        System.out.println(requestInfo);

    } catch (IOException e) {
        e.printStackTrace();
        System.out.println("客戶端錯誤");
    }
}

}

返回響應協議:

public class Server02 {

private ServerSocket serverSocket;
public static void main(String[]args)
{
    Server02 server=new Server02();
    server.start();
}
//啟動服務
public void start()
{
    try {
        serverSocket=new ServerSocket(8888);
        receive();
    } catch (IOException e) {

        e.printStackTrace();
        System.out.println("服務器啟動失敗");
    }
}
//停止服務
public void stop()
{

}
//接受連接處理
public void receive()
{
    try {
        Socket client=serverSocket.accept();
        System.out.println("一個客戶端建立了連接");
        //獲取請求協議
        InputStream is =client.getInputStream();
        byte[] datas=new byte[1024*1024];
        int len=is.read(datas);  //讀取完畢,并返回長度
        String requestInfo =new String(datas,0,len);
        System.out.println(requestInfo);

        StringBuilder content =new StringBuilder();
        content.append("<html>");
        content.append("<head>");
        content.append("<title>");
        content.append("服務器響應成功");
        content.append("</title>");
        content.append("</head>");
        content.append("<body>");
        content.append("終于回來了");
        content.append("</body>");
        content.append("</html>");
        int size=content.toString().getBytes().length; //必須獲取字節長度

        StringBuilder responseInfo =new StringBuilder();
        String blank =" ";
        String CRLF="\r\n";
        //拼接響應行
        responseInfo.append("HTTP/1.1").append(blank);
        responseInfo.append(200).append(blank);
        responseInfo.append("OK").append(CRLF);
        //返回
        //1、響應行:HTTP/1.1 200 OK
        //2、響應頭(最后一行存在空行):
        /*
         Date:Mon,31Dec209904:25:57GMT
        Server:shsxt Server/0.0.1;charset=GBK    服務器內容
        Content-type:text/html                   內容類型
        Content-length:39725426                   內容長度
         */
        //拼接響應頭
        responseInfo.append("Date:").append(new Date()).append(CRLF);
        responseInfo.append("Server:").append("shsxt Server/0.0.1;charset=GBK").append(CRLF);
        responseInfo.append("Content-type:text/html").append(CRLF);
        responseInfo.append("Content-length:").append(size).append(CRLF);
        responseInfo.append(CRLF);   //響應頭最后一行存在空行
        //3、 正文
        responseInfo.append(content.toString());

        //寫出到客戶端
        BufferedWriter bw =new BufferedWriter(new OutputStreamWriter(client.getOutputStream()));
        bw.write(responseInfo.toString());
        bw.flush();

    } catch (IOException e) {
        e.printStackTrace();
        System.out.println("客戶端錯誤");
    }
}
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宜黄县| 治县。| 大丰市| 枣阳市| 大同市| 屯留县| 宜兴市| 孟州市| 西青区| 浦北县| 奉化市| 晋州市| 兴文县| 汪清县| 博乐市| 永善县| 罗田县| 隆尧县| 邛崃市| 台湾省| 通城县| 环江| 黑河市| 社旗县| 白玉县| 岳普湖县| 江都市| 通化县| 四子王旗| 新化县| 湘乡市| 新宁县| 德惠市| 海安县| 武强县| 辽源市| 温宿县| 华蓥市| 峨山| 益阳市| 大洼县|