摘要:RetroGuard的使用方法(转) Permalink | Printable RetroGuard的使用方法: RetroGuard是一个很不错的Java混淆器,而且在JBuilder7...
阅读全文
摘要:既然ClassLoader可以形成层次结构,则在plugin.xml中定义好 依赖关系以后,加载插件以后不是多个虚拟机吧? ClassLoaderparent = new URLClassLoader(new URL[]{...}); ClassLoader son = ClassLoader.newInstance(new URL[]{...},parent); 建了两个虚拟机么?还是s...
阅读全文
摘要:Hi, I'm trying to create a servlet class that will remember the previous web page, so that when a person logs in, it will remember the last page that he/she was in. The way it's done is that every t...
阅读全文
摘要:格式化输出数字 翻译:Cherami email:cherami@163.net 原文:http://developer.java.sun.com/developer/TechTips/2000/tt0411.html 有时我们需要控制输出的数字的格式,如何使用java的类库做到这个呢? 也许你不关心格式,但是你需要关心你的程序可以在全世界通用,像下面的这样一个简单的语句是依赖地区的:...
阅读全文