HTTP_响应消息_响应头
响应头
格式:头名称:值
常见的响应头:
Content-Type:服务器告诉客户端响应本体数据以及编码格式
Content-disoislition:服务器告诉客户端什么格式打开响应体数据
值:
in-line:默认值,在当前页面内打开
attachment:filename=xxx以附件形式打开响应体。文件下载
响应空行
响应体:传输的数据
响应字符申格式
HTTP/1.1 200 oK
content-Type: text/html;charset=UTF-8
content-Length: 101
Date: wed,06 Jun 2018 07:88:42GMT
<html>
<head>
<title>$Title$</title>< / head>
<body>
hello , response< / body>
</html>
Response对象
功能:设置响应行
1,设置响应行
格式:HTTP/1.1 200 OK
设置状态码:setStatus(int sc)
设置响应头:setHeader(String name,String values)
设置响应体:
获取输出流:
字符输出流:PrintWriter getWriter()
字节输出流:ServletOutputSteam getOutputStream()
使用输出流,将数据输出到客户端浏览器
标签:输出,HTTP,响应,格式,Response,客户端 From: https://www.cnblogs.com/ssr1/p/16587077.html