我所有的小程序类在哪里 - 创建自定义类加载器
我正在尝试构建自定义 FileClassLoader,因为我需要在应用程序中的某个点卸载 dll。我实例化类加载器如下:
public class FileClassLoader extends ClassLoader {
private Map<String, Class<?>> classes;
public FileClassLoader() {
super(FileClassLoader.class.getClassLoader());
classes = new HashMap<String, Class<?>>();
}
.......
}
但是当我检查类 HashMap 的大小时,它为零。这些类打包在一个 jar 中,应用程序(运行良好)是一个小程序。在尝试添加此自定义类加载器之前,应用程序运行正常,那么我做错了什么?
谢谢你,
埃利奥特
I am trying to build a custom FileClassLoader because I need to unload a dll at a certain point in my application. I instantiate the class loader has follows:
public class FileClassLoader extends ClassLoader {
private Map<String, Class<?>> classes;
public FileClassLoader() {
super(FileClassLoader.class.getClassLoader());
classes = new HashMap<String, Class<?>>();
}
.......
}
But when I check the size of the classes HashMap it is zero. The classes are packaged in a jar, and the application (which runs fine) is an applet. Prior to trying to add this custom class loader, the application was working properly so what am I doing wrong?
Thank you,
Elliott
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论