请求行+请求头+请求体 POST /user HTTP/1.1 // 请求行 Host: www.user.com Content-Type: application/x-www-form-urlencoded Connection: Keep-Alive User-agent: Mozilla/5.0. // 以上是请求头 (此处必须有一空行 | // 空行分割header和请求内容 name=world // 请求体(可选,如get请求时可选) 1234567
请求行+请求头+请求体
POST /user HTTP/1.1 // 请求行 Host: www.user.com Content-Type: application/x-www-form-urlencoded Connection: Keep-Alive User-agent: Mozilla/5.0. // 以上是请求头 (此处必须有一空行 | // 空行分割header和请求内容 name=world // 请求体(可选,如get请求时可选)
状态行+响应行+响应体
← Java中的网络请求 HTTP如何保存用户状态→