我想在每次调用我的方法时创建一个新的ClassLoader
。
因此,我可以在不退出程序的情况下重新加载class
。
一种我可以更新class
加载的ClassLoader
的方法也是一种解决方案。
我该如何实现?
最佳答案
我在这里找到了一个很好的解释性答案:
http://www.exampledepot.com/egs/java.lang/reloadclass.html
对于我来说,重要的是要有两个二进制文件夹:
一个用于测试用例,另一个用于程序源。
引用:
URL[] urls = null;
try {
// Convert the file object to a URL
File dir = new File(System.getProperty("user.dir")
+File.separator+"dir"+File.separator);
URL url = dir.toURL(); // file:/c:/almanac1.4/examples/
urls = new URL[]{url};
} catch (MalformedURLException e) {
}
try {
// Create a new class loader with the directory
ClassLoader cl = new URLClassLoader(urls);
// Load in the class
Class cls = cl.loadClass("MyReloadableClassImpl");
关于java - 创建新的ClassLoader以重新加载Class,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9819318/