-
静态 动态查看全部
-
include指令与include动作比较
查看全部 -
include动作
<jsp:include page="URL" flush="true|false"/>
flush:被包含的页面是否从缓冲区读取。
查看全部 -
include指令
语法:
<%@ include file="URL"%>
查看全部 -
Session与Cookie对比
查看全部 -
使用URLEncoder解决无法在Cookie当中保存中文字符串问题
String password=URLEncoder.encode(request.getParameter("password"),"utf-8")
解码:username=URLDecoder.decode(c.getValue(),"utf-8")
查看全部 -
Jsp中创建与使用Cookie
创建Cookie对象
Cookie newCookie=new Cookie(String key,Object value);
写入Cookie对象
response.addCookie(newCookie);
读取Cookie对象
Cookie[] cookies=request.getCookies();
查看全部 -
保存用户的状态的两大机制
Session
Cookie
Cookie:是Web服务器保存在客户端的一系列文本信息。
典型应用一:判定注册用户是否已经登陆网站。
典型应用二:“购物车”的处理。
查看全部 -
tomcat默认session超时时间为30分钟
设置session超时方式
session.setMaxInactiveInterval(int second);
在web.xml配置(单位是分钟)
<session-config>
<session-timeout>
10
</session-timeout>
</session-config>
查看全部 -
没看懂这个setAttribute()和getAttribute()有什么用:自己设的自己又取。这是要干嘛???
查看全部 -
config对象的三个方法
查看全部 -
pageContext对象的常用方法
查看全部 -
常用的resonse对象
查看全部 -
request对象的方法
查看全部 -
out方法的内置函数
查看全部
举报