servlet
qq_jasonStar
欢迎交流!
展开
-
JSP的内置对象
1、request对象客户端的请求信息被封装在request对象中,通过它才能了解到客户的需求,然后做出响应。它是HttpServletRequest类的实例。object getAttribute(Stringname) 返回指定属性的属性值Enumeration getAttributeNames() 返回所有可用属性名的枚举String getCharac转载 2017-10-19 16:41:37 · 324 阅读 · 0 评论 -
Session
1、HttpSession?它也是一个域对象: session servletContext request 同一个会话下,可以使一个应用的多个资源共享数据cookie客户端技术,只能存字符串。HttpSession服务器端的技术,它可以存对象。2、常用方法把数据保存在HttpSession对象中,该对象也是一个域对象。void setAttribu原创 2017-10-19 16:57:29 · 232 阅读 · 0 评论 -
Cookie
由于Cookie是由客户端浏览器保存和携带的,所以称之为客户端技术。属性:name: 名称不能唯一确定一个cookie。路径可能不同value: 不能存中文path: 默认是写入cookie那个应用的访问路径如:http://localhost:8080/day10/servlet/cookieDemo1Path: /day10/servlet/原创 2017-10-19 19:24:38 · 207 阅读 · 0 评论 -
request、response的常用方法
setAttribute()在Request域中存储数据setCharacterEncoding()设置请求参数的编码方式,只对post请求有效getMethod()获取请求类型getParameter()获取指定请求参数值getParameterNames()获取所有请求参数,返回一个Enumeration枚举类getAttribute()获取域中存储的数原创 2017-10-19 19:28:32 · 2677 阅读 · 0 评论 -
request的常用方法
String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";request.getSchema()可以返回当前页面使用的协议,http 或是 https;转载 2017-10-19 19:32:33 · 614 阅读 · 0 评论