java
Kira-Yang
这个作者很懒,什么都没留下…
展开
-
Java ClassLoader详解
类加载器是 Java 语言的一个创新,也是 Java 语言流行的重要原因之一。它使得 Java 类可以被动态加载到 Java 虚拟机中并执行。类加载器从 JDK 1.0 就出现了,最初是为了满足 Java Applet 的需要而开发出来的。Java Applet 需要从远程下载 Java 类文件到浏览器中并执行。现在类加载器在 Web 容器和 OSGi 中得到了广泛的使用。一般来说,Jav转载 2013-11-18 22:45:48 · 803 阅读 · 0 评论 -
Suse环境File.mkdirs()创建的目录判断是否可写返回false的问题
使用Apache common io的FileUtils.copyDirectory将一个目录拷贝到另一个目录,执行时总是报目标目录不可写,但是目标目录是在拷贝前创建了,telnet到后台查看用户对该目录的权限也是有的,很奇怪!多次尝试发现:如果构造File的路径中有“..”,那么使用mkdirs创建目录后使用canWrite判断是否可写就会返回false,而如果路径中没有的话就会返回true原创 2013-11-18 20:34:06 · 1238 阅读 · 0 评论 -
"java.lang.OutOfMemoryError: PermGen space" with a twist
There are a lot of posts out there about the "java.lang.OutOfMemoryError: PermGen space" exception. Agood description of the problem can be found in Frank Kieviet's blog.One of the main causes f转载 2014-08-13 10:19:15 · 632 阅读 · 0 评论 -
How to fix the dreaded "java.lang.OutOfMemoryError: PermGen space" exception (classloader leaks)
In the previous blog entry Classloader leaks: the dreaded "java.lang.OutOfMemoryError: PermGen space" exception I explained how this type of problem can originate in the application code that you d转载 2014-08-12 16:54:52 · 937 阅读 · 0 评论 -
可集成到Eclipse的Java反编译器插件
插件安装地址:http://feeling.sourceforge.net/update插件使用说明:http://www.blogjava.net/cnfree/archive/2012/10/30/390457.html转载 2015-12-10 18:53:07 · 533 阅读 · 0 评论