Response对象
当客户端发送http请求时,服务器端会对每一次请求,创建request对象和response对象。
- Web服务器收到客户端的Http请求时,会针对每一次请求,分别创建一个用于代表请求的request对象,和代表响应的response对象。
- request和response对象既然代表请求和响应,那我们对获取客户机提交过来的数据,只需要找request对象即可。要向客户机输出数据,只需要对response对象即可。
功能:设置响应消息
1. 设置响应行
1. 格式:HTTP/1.1 200 ok
2. 设置状态码:setStatus(int sc)
2. 设置响应头:setHeader(String name, String value)
3. 设置响应体:
* 使用步骤:
1. 获取输出流
* 字符输出流:PrintWriter getWriter()
* 字节输出流:ServletOutputStream getOutputStream()
2. 使用输出流,将数据输出到客户端浏览器
案例:
重定向的使用——资源跳转
重定向是告诉浏览器B资源的路径,让浏览器访问B资源。
代码实现:
- 设置状态码为302
response.setStatus(302);
2.设置响应头location
response.setHeader(“location”,"/day15/responseDemo2");
3.简单的重定向方法
response.sendRedirect("/day15/responseDemo2");
1、传统实现方式
设置状态码302和location是固定操作,只需修改传递的url
@WebServlet("/as")
public class AServlet extends HttpServlet {
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//传统方式重定向
response.setStatus(302);//设置状态码
response.setHeader("location","https://www.baidu.com");//设置响应头
}
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
this.doPost(request, response);
}
}
2、简化实现方式(最常用)
@WebServlet("/bs")
public class BServlet extends HttpServlet {
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//简写方式重定向
response.sendRedirect("https://www.baidu.com");
}
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
this.doPost(request, response);
}
}
重定向和转发的区别
重定向的特点:redirect
- 地址栏发生变化
- 重定向可以访问其他站点(服务器)的资源
- 重定向是两次请求。不能使用request对象来共享数据
转发的特点:forward
- 转发地址栏路径不变
- 转发只能访问当前服务器下的资源
- 转发是一次请求,可以使用request对象来共享数据
路径写法:
路径分类
相对路径:通过相对路径不可以确定唯一资源
如:./index.html 不以/开头,以.开头路径
规则:找到当前资源和目标资源之间的相对位置关系 …/:当前目录 …/:后退一级目录
2. 绝对路径:通过绝对路径可以确定唯一资源
如:http://localhost/day15/responseDemo2 /day15/responseDemo2
以/开头的路径
规则:
判断定义的路径是给谁用的?
判断请求将来从哪儿发出
给客户端浏览器使用:需要加虚拟目录(项目的访问路径)
建议虚拟目录动态获取:request.getContextPath()
< a> , < form> 重定向…
给服务器使用:不需要加虚拟目录
转发路径
2.服务器输出字符数据到浏览器
步骤:
1. 获取字符输出流
2. 输出数据
注意:
乱码问题:
1. PrintWriter pw = response.getWriter();获取的流的默认编码是ISO-8859-1
2. 设置该流的默认编码
3. 告诉浏览器响应体使用的编码
简单的形式,设置编码,是在获取流之前设置
response.setContentType("text/html;charset=utf-8");
@WebServlet("/responseDemo4")
public class ResponseDemo4 extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//获取流对象之前,设置流的默认编码:ISO-8859-1 设置为:GBK
// response.setCharacterEncoding("utf-8");
//告诉浏览器,服务器发送的消息体数据的编码。建议浏览器使用该编码解码
//response.setHeader("content-type","text/html;charset=utf-8");
//简单的形式,设置编码
response.setContentType("text/html;charset=utf-8");
//1.获取字符输出流
PrintWriter pw = response.getWriter();
//2.输出数据
//pw.write("<h1>hello response</h1>");
pw.write("你好啊啊啊 response");
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
this.doPost(request,response);
}
}
3. 服务器输出字节数据到浏览器
步骤:
1. 获取字节输出流
2. 输出数据
@WebServlet("/responseDemo5")
public class ResponseDemo5 extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html;charset=utf-8");
//1.获取字节输出流
ServletOutputStream sos = response.getOutputStream();
//2.输出数据
sos.write("你好".getBytes("utf-8"));
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
this.doPost(request,response);
}
}