易截截图软件、单文件、免安装、纯绿色、仅160KB

关于jsp中的cookie小程序

<body>
 <%
   Cookie[] cookies = request.getCookies() ;
   Cookie cookie = null ;
   if(cookies!=null){
     cookie = cookies[0] ;
     out.print("上次访问的ip是: " + request.getRemoteAddr() +"<br>") ;  //得到客户端的ip
     out.print("上次访问时间:" + cookie.getValue()) ;
     cookie.setValue(new java.util.Date().toString()) ;
     response.addCookie(cookie) ;         //保存到客户端
     cookie.setMaxAge(365 * 24 * 3600);
   }
  
  
   if(cookies==null){
     cookie = new Cookie("AccessTime","") ;
     cookie.setValue(new java.util.Date().toString()) ;
     response.addCookie(cookie) ;    //保存到客户端
     cookie.setMaxAge(365 * 24 * 3600);
   }
  %>
  </body>
ps:如果没有设置cookie的有效期,那么在关闭浏览器时cookie会被删除。如果生命期为负整数,表示这个cookie对象是临时的,不要保存在硬盘中,关闭浏览器后数据会自动丢失!


相关文档:

(二)Tomcat+JSP配置 TO 王老师

一、安装jdk并配置jdk
     1、双击安装jdk-6u19-windows-i586(假定你的jdk使用默认安装,安装在C:\Program Files\Java\jdk1.6.0_19);
     2、配置环境变量,在我的电脑->属性->高级->环境变量->系统变量中添加以下环境变量
    (1)系统变量 ......

Fckeditor和JSP(Java)项目的整合实例

(转载标签:fckeditorit 分类:Java)
1.将FCKeditor目录下的editor拷贝到项目的WebContent目录下
2.并把ECKeditor-2.3.jar 和 commons-fileupload.jar拷贝到项目\WebContent\WEB-INF\lib目录下
3.把 FCKeditor.tld拷贝到项目\WebContent\WEB-INF下
4.在web.xml里添加如下代码
代码
<servlet>    ......

jsp/get/set/struts.xml存取

get
jsp         url          ${param.serialID}
action    jsp          String commentId = ServletActionContext.getRequest().getParameter("commentId");
-- ......

组拼jsp方法3

<table width=100% border="0" align="center" cellpadding="0"
 cellspacing="0">
 <tr>
  <td height="1" class="gray1"></td>
 </tr>
</table>
<tiles:insert attribute="footer" />
</body>
</html:html> ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号