学习jsp01

来源:互联网 发布:社交网络中文 编辑:程序博客网 时间:2024/05/27 20:52


实例化       servlet容器创建 servlet的实例
初始化       容器调用init方法的时候
请求处理     调用service方法的时候
服务中止     destroy方法的时候


需要继承一个父类
servlet继承体系

javax.servlet包
       servlet
  GenericServlet
javax.servlet.http
       httpServlet
  自定义的servlet


HttpServletRequest的常用方法
setCharacterEncoding(String org);  设置请求报文的字符集编码,主要是用来解决页面间传递中文的问题

getParameter(String name);
获取有name指定参数的值  

getParameterValues(String name);
获取有name指定参数的所有值

getParameterNames();
获取所有参数的名称

getSession 获得与请求有关的session(回话),如果没有就创建一个新的

getSeesion(boolean create);
获得与请求有关的session(回话),如果没有由create参数觉得是否创建

getCookie();
获得与请求有关的cookie

getRequestDispatcher(String path);
获取与请求有关的RequestDespatcher有关的信息

setAttribute(String name,Object value);
在请求中设置新的属性

getAttribute(String name);
根据name获取属性的值

getAttributeNames 获取所有属性的值

removeAttribute(String name);  删除属性

0 0
原创粉丝点击