标签:header size tst font ati 快捷 响应 cat status
Servlet基础
一.重定向
1.方法一:
resp.setStatus(302);//添加响应码302,请求重定向
resp.addHeader("location","/path");//参数/path是相对路径,也可以为具体url
2.方法二:
resp.sendRedirect("/path");//快捷的重定向方法
标签:header size tst font ati 快捷 响应 cat status
原文地址:https://www.cnblogs.com/memo-song/p/9021696.html