HTTP/1.1 200 OK HTTP协议版本 状态代码 对状态代码的描述
Server:Apache-Coyote/1.1 服务器类型
Content-Type:text/html 正文类型(MIME)
Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip, deflate
Accept-Language:zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3 浏览器所用语言
Cache-Control:max-age=0
Connection:keep-alive
Host:127.0.0.1:8080
User-Agent:Mozilla/5.0 (Windows NT 10.0; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0
<html> 响应正文
<head>
<title>Hello World</title>
</head>
<body>
<form name="loginForm" method="POST" action="Servlet/HelloServlet">
<table>
<tr>
<td><div align="right">UserName</div></td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td><div align="right">PassWord</div></td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td><input type="submit" name="submit" value="登陆"></td>
<td><input type="reset" name="reset" value="重置"></td>
</tr>
</table>
</form>
</body>
</html>