文章目录
- 一、基本概念
- 二、案例
- 1. 完成重定向
- 2. forward 和 redirect 区别
- 3. 路径写法
- 4. 服务器输出字符数据到浏览器
- 5. 服务器输出字节数据到浏览器
一、基本概念
功能:设置响应消息
(1)设置响应行
* 格式:HTTP/1.1 200 ok
* 设置状态码:setStatus(int sc)
(2)设置响应头:setHeader(String name, String value)
(3)设置响应体:
* 使用步骤:
* 获取输出流
* 字符输出流:PrintWriter getWriter()
* 字节输出流:ServletOutputStream getOutputStream()
* 使用输出流,将数据输出到客户端浏览器
二、案例
1. 完成重定向
@WebServlet("/demo1")
public class ResponseServlet1 extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
System.out.println("demo1.....");
//访问/demo1,会自动跳转到/demo2资源
//1. 设置状态码为302
response.setStatus(302);
//2.设置响应头location
response.setHeader("location","/demo2");
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
this.doPost(request, response);
}
}
简单写法:
@WebServlet("/demo1")
public class ResponseServlet1 extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
System.out.println("demo1.....");
//简单的重定向方法
response.sendRedirect("/demo2");
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
this.doPost(request, response);
}
}
2. forward 和 redirect 区别
* 重定向的特点:redirect
1. 地址栏发生变化
2. 重定向可以访问其他站点(服务器)的资源
3. 重定向是两次请求,不能使用request对象来共享数据
* 转发的特点:forward
1. 转发地址栏路径不变
2. 转发只能访问当前服务器下的资源
3. 转发是一次请求,可以使用request对象来共享数据
3. 路径写法
(1)相对路径:通过相对路径不可以确定唯一资源,是一个相对位置的存在
* 如:./index.html
* 不以/开头,以.开头路径
* 规则:找到当前资源和目标资源之间的相对位置关系
* ./:当前目录
* ../:后退一级目录
(2) 绝对路径:通过绝对路径可以确定唯一资源,表示具体的位置
* 如:http://localhost/day15/responseDemo2 /day15/responseDemo2
* 以/开头的路径
* 规则:判断定义的路径是给谁用的,判断请求将来从哪儿发出
* 给客户端浏览器使用:需要加虚拟目录(项目的访问路径)
* 建议虚拟目录动态获取:request.getContextPath()
* <a> , <form> 重定向...
* 给服务器使用:不需要加虚拟目录
* 转发路径
给客户的浏览器使用:
/**
* 重定向
*/
@WebServlet("/responseDemo1")
public class ResponseDemo1 extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// 动态获取虚拟目录
String contextPath = request.getContextPath();
// 简单的重定向方法
response.sendRedirect(contextPath + "/responseDemo2");
}
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
this.doPost(request, response);
}
}
服务器内部使用:
public class ResponseDemo3 extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//转发,这里属于服务器内部调用,不用加虚拟目录,直接转发给 responseDemo2
request.getRequestDispatcher("/responseDemo2").forward(request,response);
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
this.doPost(request,response);
}
}
4. 服务器输出字符数据到浏览器
* 步骤:
(1)获取字符输出流
(2)输出数据
* 注意:
* 乱码问题:
* PrintWriter pw = response.getWriter();获取的流的默认编码是ISO-8859-1
* 设置该流的默认编码
* 告诉浏览器响应体使用的编码
//简单的形式,设置编码,是在获取流之前设置
response.setContentType("text/html;charset=utf-8");
@WebServlet("/responseDemo4")
public class ResponseDemo4 extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//简单的形式,设置编码
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);
}
}
5. 服务器输出字节数据到浏览器
* 步骤:
(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);
}
}