摘要: 有时候需要每隔一段时间去执行某个任务,在Java中提供了Timer和TimerTask来完成这个任务,这个两个类位于java.util包中。Timer类是Java中一种线程设施,用于安排以后在后台线程中执行的任务,可以安排任务执行一次或定期重复执行。与每个Timer对象对应的是单个后台线程,用于顺序的执行所有计时器任务。 对Timer对象最后的引用完成后,并且所有未处理的任务都已执行完毕后,计时器... 阅读全文
posted @ 2010-02-25 13:20 大Vin 阅读(1049) 评论(0) 推荐(0) 编辑
摘要: 出错代码:int user_id = Integer.parseInt((String) request.getAttribute("user_id"));修改代码: int user_id =Integer.parseInt(request.getAttribute("user_id").toString()); 阅读全文
posted @ 2010-02-22 15:21 大Vin 阅读(3529) 评论(0) 推荐(0) 编辑
摘要: 使用JavaScript通过在表单里加入隐藏域信息,然后用表单提交的方式把数据传递给JSP程序Example(1)代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<scripttype="text/javascript"language="... 阅读全文
posted @ 2010-02-18 11:40 大Vin 阅读(5608) 评论(0) 推荐(0) 编辑
摘要: 1.servlet跳转到相应jsp页面代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--request.setAttribute("param_id",user.getUserID());//传到参数request.setAttribute("pa... 阅读全文
posted @ 2010-02-14 15:49 大Vin 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--//PageCt.Java分页的类packagevod;importjava.sql.*;importjava.util.*;publicclassPageCt{privatelongl_start... 阅读全文
posted @ 2010-02-14 11:10 大Vin 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 1.选出ID最后一行的记录[代码] 阅读全文
posted @ 2010-02-14 10:58 大Vin 阅读(206) 评论(1) 推荐(0) 编辑
摘要: 1.GBK汉字国标扩展码,基本上采用了原来GB2312-80所有的汉字及码位,并涵盖了原Unicode中所有的汉字20902。GBK同时也涵盖了Unicode所有CJK汉字,所以也可以和Unicode做一一对应。2.ISO/IEC 8859-1又称Latin-1或“西欧语言”,是国际标准化组织内ISO/IEC 8859的第一个8位字符集。用JSP时,如果页面需要使用中文,要... 阅读全文
posted @ 2010-02-13 10:21 大Vin 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 1.直接往input中读取(form 的action用该servlet,servlet用request.getAttribute获得值)[代码]2.带hidden的input[代码]3.将checkbox的值传到servlet代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighl... 阅读全文
posted @ 2010-02-12 22:53 大Vin 阅读(4833) 评论(1) 推荐(0) 编辑
摘要: 1.insert[代码] 阅读全文
posted @ 2010-02-12 22:01 大Vin 阅读(539) 评论(0) 推荐(0) 编辑
摘要: 1.使用session servlet: request.getSession().setAttribute("sessionname",yourvalue);jsp: <%=request.getSession.getAttribute("sessionname")%>2.使用request 直接给response写值,再转到一个jsp叶面接受的方法 servlet: reque... 阅读全文
posted @ 2010-02-10 20:16 大Vin 阅读(554) 评论(0) 推荐(0) 编辑