上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页
摘要: 费了很长的时间,已经搞定了主要是:jdbc.url=jdbc\:mysql\://192.168.168.13\:3306/portalservercclg?useUnicode\=true&characterEncoding\=UTF-8有的服务器不需要转义字符应该修改成jdbc.url=jdbc:mysql://192.168.168.13:3306/portalservercclg?useUnicode=true&characterEncoding=UTF-8 阅读全文
posted @ 2012-10-17 18:30 狼里格朗 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 有的时候,我们在数据库中,会在一个字段存放多个值,之间用特殊字符分割。比如,需要某个字段存放了用户个人使用的编程语言(可以多选)1.Java2.C3.PHP如果用户选择了1和2,那么,在数据库中的"编程语言"一栏里,可能会写入"1,2"(此处以逗号分隔).当在查询页面需要显示编程语言时,我们不能直接显示"1,2",而是需要转换成"Java、C"。方案1:我们可以在后台得到查询结果后转义,这个需要在后台遍历查询的结果集,效率不高。方案2:我们可以使用struts2的标签<s:generator>实现上面的 阅读全文
posted @ 2012-10-16 09:45 狼里格朗 阅读(559) 评论(0) 推荐(0) 编辑
摘要: Freemarker中如何遍历List摘要:在Freemarker应用中经常会遍历List获取需要的数据,并对需要的数据进行排序加工后呈现给用户。那么在Freemarker中如何遍历List,并对List中数据进行适当的排序呢?通过下文的介绍,相信您一定会找到答案。一、Freemarker中list指令简单介绍要想在Freemarker中遍历list,必须通过使用list指令,即<#list sequence as item>…</#list>sequence是集合(collection)的表达式,item是循环变量的名字,不能是表达式。当在遍历sequence时,会将 阅读全文
posted @ 2012-10-11 15:33 狼里格朗 阅读(717) 评论(0) 推荐(0) 编辑
摘要: http://pan.baidu.com/share/link?shareid=76405&uk=1898389506 阅读全文
posted @ 2012-10-11 10:22 狼里格朗 阅读(117) 评论(0) 推荐(0) 编辑
摘要: linux系统find . -name "*.jsp" | xargs egrep -liw "createNewFile| File\(| File " *.jspwindows系统findstr /S /M /D:e:\T6_lucene /C:"createNewFile" /C:" File " /C:" File(" *.jsp 阅读全文
posted @ 2012-10-08 14:15 狼里格朗 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1、js部分:function checkIsLogon(id){ var uname= $.cookie("jchome_userName"); $("#dd").show(); if(uname==null){ logonjsp(id); }}function logonjsp(id){ $.post( "views/guide/logon.jsp", {id:id}, function(data){ openlogon(data); } ) ;}function openlogon(str){ $('#title' 阅读全文
posted @ 2012-09-27 19:04 狼里格朗 阅读(227) 评论(0) 推荐(0) 编辑
摘要: public static String getRequestURL(HttpServletRequest request) {if (request == null) {return "";}StringBuffer sbUrl = new StringBuffer();sbUrl.append(request.getContextPath());sbUrl.append(request.getServletPath());String strQuery = request.getQueryString();if (strQuery != null && 阅读全文
posted @ 2012-09-25 09:20 狼里格朗 阅读(153) 评论(0) 推荐(0) 编辑
摘要: <a href="tencent://Message/?Uin=515026513&websiteName=q-zone.qq.com&Menu=yes"><img border="0" alt="点击这里给我发消息" src="http://wpa.qq.com/pa?p=1:515026513:1" style="width: 60px;"></img></a> 阅读全文
posted @ 2012-09-21 17:28 狼里格朗 阅读(185) 评论(0) 推荐(0) 编辑
摘要: <img title="组织结构" alt="组织结构" src="/uploadfile/20111229/100228.jpg" usemap="#Map" border="0" height="488" width="487" /> <map name="Map" id="Map"> <area shape="rect" coords="130,115 阅读全文
posted @ 2012-09-12 12:06 狼里格朗 阅读(199) 评论(0) 推荐(0) 编辑
摘要: java.lang.NoSuchMethodException: org.apache.catalina.deploy.WebXml addFilter at org.apache.tomcat.util.IntrospectionUtils.callMethod1(IntrospectionUtils.java:803) at org.apache.tomcat.util.digester.SetNextRule.end(SetNextRule.java:201) at org.apache.tomcat.util.digester.Digester.endElement(Digester. 阅读全文
posted @ 2012-09-06 16:21 狼里格朗 阅读(4930) 评论(1) 推荐(1) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页