2013年6月8日

摘要: try { URL url=new URL("http://open.baidu.com/special/time/");//取得资源对象 URLConnection uc; uc = url.openConnection(); uc.connect(); //发出连接 long ld=uc.getDate(); //取得网站日期时间 Date date=new Date(ld); //转换为标准时间对象 //分别取... 阅读全文

posted @ 2013-06-08 15:45 IT_louis 阅读(465) 评论(0) 推荐(0) 编辑


2013年4月23日

摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title></title><style type="text/css">.black_overlay{d 阅读全文

posted @ 2013-04-23 15:37 IT_louis 阅读(276) 评论(0) 推荐(0) 编辑

摘要: <html><body><table width="100%" align="center" border=0> <tr> <table width="100%" border=1> <tr> <td width="50%"> biaoti1321 </td> <td width="50%"> biaoti2321321 </td> <td>&nbsp; & 阅读全文

posted @ 2013-04-23 15:36 IT_louis 阅读(252) 评论(0) 推荐(0) 编辑

摘要: <Html><HEAD><TITLE>javascript从excel中读取数据并显示</TITLE><SCRIPT LANGUAGE = JavaScript>function addfile(){var exApp = new ActiveXObject("Excel.Application");var exWBook = exApp.workbooks.open("c:\\001.xls")var exWSheet = exWBook.Worksheets(1);//document.wr 阅读全文

posted @ 2013-04-23 15:35 IT_louis 阅读(214) 评论(0) 推荐(0) 编辑

摘要: 1、选中去除文本框文字,离开后显示原有文字: <input name="key" type="text" id="key" value="关键词" size="30" onmouseover=this.focus();this.select(); onclick="if(value==defaultValue){value='';this.style.color='#000'}" onBlur="if(!value){value 阅读全文

posted @ 2013-04-23 15:34 IT_louis 阅读(502) 评论(0) 推荐(0) 编辑

摘要: <html><head><title>jquery表格操作</title><script language="javascript" src="http://www.codefans.net/ajaxjs/jquery1.3.2.js"></script></head><body><a href="#" onclick="add_line();">添加一行</a>&nbsp;&nb 阅读全文

posted @ 2013-04-23 15:33 IT_louis 阅读(346) 评论(0) 推荐(0) 编辑

摘要: function onchangeShow(pid){ $.ajax({ cache:false, url:'<%=path %>/aticle_ajax/twoclass.action', type:'post', dataType:'json', data:{pid:pid}, success:update_c }); }function update_c(json){ var sort=json.sort; var s_root=document.getEl... 阅读全文

posted @ 2013-04-23 15:31 IT_louis 阅读(176) 评论(0) 推荐(0) 编辑


2013年4月22日

摘要: <%@taglib uri="/struts-tags" prefix="s"%> <table> <s:iterator value="map.keySet()" id="id"> <tr><td> <s:property value="#id"/></td> <s:iterator value="map.get(#id)"> <td><s:property v 阅读全文

posted @ 2013-04-22 10:13 IT_louis 阅读(129) 评论(0) 推荐(0) 编辑


2013年4月18日

摘要: JCS是Jakarta的项目Turbine的子项目。它是一个复合式的缓冲工具。可以将对象缓冲到内存、硬盘。具有缓冲对象时间过期设定。还可以通过JCS构建具有缓冲的分布式构架,以实现高性能的应用。对于一些需要频繁访问而每访问一次都非常消耗资源的对象,可以临时存放在缓冲区中,这样可以提高服务的性能。而JCS正是一个很好的缓冲工具。缓冲工具对于读操作远远多于写操作的应用性能提高非常显著。JCS除了简单的将对象缓冲在内存中以外,还具有几个特性,以适应企业级缓冲系统的需要。这些特性包括时间过期、索引式硬盘缓冲、并行式的分布缓冲等。 内存缓冲 JCS现在支持两种内存缓冲算法LRU和MRU。通常都是使用LR 阅读全文

posted @ 2013-04-18 13:47 IT_louis 阅读(251) 评论(0) 推荐(0) 编辑

摘要: 1 public UserInfo getUpdateUser(String userid) throws Exception { 2 3 4 5 getHibernateTemplate().execute(new HibernateCallback() { 6 public Object doInHibernate(Session session) 7 throws HibernateException, SQLException { 8 String hql = "{call demo001(?,?)}"; 9 ... 阅读全文

posted @ 2013-04-18 13:46 IT_louis 阅读(290) 评论(0) 推荐(0) 编辑


Copyright © 2024 IT_louis
Powered by .NET 9.0 on Kubernetes