标签:web ati response 客户端 服务器 跳转 ext 方法 设置
response对象:对客户端的请求作出回应,将Web服务器处理后的结果发回客户端。
response对象:属于javax.servlet.HttpServletResponse接口的实例。
HttpServletResponse接口的定义:public interface HttpServletResponse extends ServletResponse
HttpServletResponse接口是ServletResponse接口的唯一子接口
public void addCookie(Cookie cookie) 向客户端增加Cookie
public void setHeader(String name, String value) 设置回应的头信息
public void sendRedirect(String location) throws IOException 页面跳转
标签:web ati response 客户端 服务器 跳转 ext 方法 设置
原文地址:http://www.cnblogs.com/houst388/p/6657458.html