- 博客(16)
- 收藏
- 关注
原创 xmltojson中遇到的CDATA变空以及json_encode成unicode的解决方法
function xml_to_json($source) { if(is_file($source)){ //传的是文件,还是xml的string的判断 $xml_array=simplexml_load_file($source); }else{ $source =uncdata($source) ; $xml_array=simplexml_load_str...
2011-11-29 17:22:23 745
原创 第三方接口回调获取不到session的情况
在互联网上充斥着各种各样开放平台的情况下,经常会碰到需要调用第三方接口的情况。在调用第三方接口时,会有回调链接,一般服务器会验证传递的回调参数是否和服务器所填写配置时候一致。 而本地我们通常会通过修改机器的config来转链接。这样如果本地原有的访问域名和回调链接说拥有的域名不一致则回调链接运行时将无法获取到之前登录的session。 最好在调用、回调、以及本地链接都保持一致。...
2011-11-14 17:19:33 1174
原创 $在jquery和js中的冲突
window.$$=function(obj){return typeof(obj)=="string"?document.getElementById(obj):obj;};// 为当前网页添加方法:根据对象ID获取对象window.$会覆盖jquery中的$,所以改个名字为$$,在js中用就必须为$$,jquery继续为$...
2011-09-28 19:24:51 112
类似点点网标签功能
New Document body{ font-size:12px;}div.tags_com{border:1px solid black;position:static;width:200px;min-height:100px;float:left;margin:2px;}.input{ ma...
2011-09-23 15:24:33 114
原创 列表拖拽功能
var dragobj={}window.onerror=function(){return false}function on_ini()// 初始化{ String.prototype.inc=function(s){return this.indexOf(s)>-1?true:false};// prototype是系统内置,此处是自行扩展判断一字符串内是否包含另一字...
2011-09-23 15:22:54 295
原创 JS窗口和父窗口操作
openframe=window.open("editor/"+id+"#","editor");获取窗口句柄在父窗口可以操作子窗口openframe.(属性,变量,方法)子窗口操作父窗口window.opener.(父窗口属性,变量,方法)...
2011-09-01 20:07:15 135
原创 关闭窗口触发事件兼容IE,FIREFOX
function onunload_handler(evt){ var isIE=document.all?true:false; evt = evt ? evt :(window.event ? window.event : null); if(isIE){//IE浏览器 var n = evt.screenX - window.s...
2011-09-01 20:04:11 162
原创 spring mvc 整合CKEditor遇到无法加载CKEditor的JS等资源问题
在 springmvc org.springframework.web.servlet.DispatcherServlet 2 springmvc / 增加 default *.css defau...
2011-05-25 14:44:27 218
原创 hibernate createSQLQuery查询问题
final String sql="select * from classtab as a left join classtab as b on a.pid = b.cid where a.dsid=?"; List li= getHibernateTemplate().executeFind(new HibernateCallback(){ public...
2011-05-04 18:59:12 114
java九宫格切割缩放并合并
//缩放 public void zoomImage(File out,String name,int rtype,int cw,int ch,int w,int h) throws Exception { BufferedImage bimg0 = ImageIO.read(new File(out, name)); int bw=bimg0.getWidth(); i...
2011-03-22 14:15:12 291
原创 struts2的一个奇怪问题
/res/getres ../index.jsp其中的name为upload是,通过URL /res/upload无法访问到 /res/getres ../index.jsp把name改为upload1可以正常访问到其中Tomcat报无法访问到的404错误,暂时不知道原因是啥There is no A...
2010-11-12 17:38:14 138
原创 eclipse编译出现Internal compiler error
Internal compiler errorjava.lang.NullPointerException at org.eclipse.jdt.internal.compiler.codegen.StackMapFrameCodeStream.store(StackMapFrameCodeStream.java:1735) at org.eclipse.jdt.internal.co...
2010-11-05 14:53:24 1303
原创 ecshop的性能问题
关于ecshop的性能,在不调整includes下的init.php和cls_mysql.php的情况做最优化的调整,使用apache的ab命令进行测试,最高的吞吐率不超过100,所以网店的并发量比较大的情况下,有必要对这两个文件进行重写,由于includes下init.php中有很多初始化参数如语言,数据库参数等等一些信息,所以我目前主要修改了cls_mysql.php,去除“数据库连接池”...
2010-11-01 18:05:10 406
原创 linux+nginx+php(fastcgi)的一些情况
nginx的某些关键参数 在nginx.confworker_processes 2;worker_connections 10000;并且做了压缩gzip on;gzip_min_length 1k;gzip_buffers 4 16k;gzip_http_version 1.0;gzip_comp_level 2;gzip_types ...
2010-10-22 18:12:25 94
原创 struts2+spring+hibernte 的java.lang.reflect.InvocationTargetException
今天在整合S2SH中发现一个Bug,造成HQL查询都是抱java.lang.reflect.InvocationTargetException 异常,最后经过排查,发现时struts2中的antlr-2.7.2.jar与其他版本antlr-2.7.*.jar的冲突造成的。郁闷了几个小时...
2010-09-27 19:59:31 115
原创 struts2+spring+hibernate+proxool
关于struts2+spring+hibernate整合proxool,跟ssh的大部分都类似,只要把application.xml的datasource注释掉,并在sessionFactory标签的props中添加如下即可。sshproxool.xmlorg.hibernate.connection.ProxoolConnectionProvider true...
2010-06-30 14:12:25 120
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人