09 2013 档案

【转】Eclipse打JAR包,插件FatJar安装与使用
摘要:原文地址:http://blog.csdn.net/jikeyzhang/article/details/4731968下载RUL:下载fatJar插件,解压缩后是一个.../plugins/(net...)把plugins下面的(net..)文件夹拷贝到eclipse的plugins下,重新启动Eclipse3.1,Windows=>prefernce=>fat jar preference看到他就说明已经安装成功了。如果没有看到,没有关系,删除D:/eclipse310/configuration/org.eclipse.update/platform.xml文件(此文件可以自 阅读全文
posted @ 2013-09-17 17:40 Vanessa 阅读(3719) 评论(0) 推荐(0)
【转】java.lang.OutOfMemoryError: Java heap space的解决
摘要:原文地址:http://blog.sina.com.cn/s/blog_4b12778b0100v0bb.htmlMyeclipse下java.lang.OutOfMemoryError:Javaheapspace的解决今天又打开Eclipse那似曾相识的IDE,想了想才发现自己从2007年3月份后几乎再没有使用它。工具就得常用,不用渐渐的就淡忘了。于是import进去个工程,run...,居然是java.lang.OutOfMemoryError: Java heap space的错误,很熟悉的错误信息,可咋就想不起来在哪里设JVM的参数啊。还是百度一下吧。 1,从Intalled JREs 阅读全文
posted @ 2013-09-13 14:51 Vanessa 阅读(305) 评论(0) 推荐(0)
【转】各种语言中的urlencode方法
摘要:URLENCODE和URLDECODE是比较常用的URL参数转换方法,为以后使用方便,自己归类一下.原文地址:http://blog.sina.com.cn/s/blog_3f195d2501000a9b.html一.JavaScript:编码:encodeURIComponent(URIString)解码:decodeURIComponent(encodedURIString)二.ASP:编码:Server.urlencode(str)解码:无三.Asp.Net编码:HttpUtility.Urlencode(str)解码:HttpUtility.UrlDecode(str)四.Php编码: 阅读全文
posted @ 2013-09-12 10:33 Vanessa 阅读(521) 评论(0) 推荐(0)