gpt4 book ai didi

java - 如何在运行时将新的java文件加载到现有的Jar中?

转载 作者:行者123 更新时间:2023-12-01 10:15:00 25 4
gpt4 key购买 nike

我有一个特定的要求,需要在运行时加载类“abc”并调用方法“xyz”?这可能吗?类文件应该存在于特定位置吗?

我尝试了下面的代码,但收到了 ClassNotFoundException

        File file = new File("location of the class file");
URL url = file.toURI().toURL();
URL[] urls = new URL[] {url};

URLClassLoader myClass = new URLClassLoader(urls);
Class<?> methodClass = myClass.loadClass("classname");
Method method = methodClass.getDeclaredMethod(methodname);

最佳答案

反射允许您通过指定类和方法的名称来创建实例并调用其方法。从您的描述来看,您似乎想要此功能。

为了更容易理解。你有反射类(class):

package com.reflect;

public class Reflect {

public void testMethod() { System.out.println("Test") }

}

然后你就有了这个主类,你可以在其中调用这个方法:

package com.reflect.main;

import java.lang.reflect.Method;

public class ReflectApp {

public static void main(String[] args) {

Class noparams[] = {};

try{
//load the Reflect at runtime
Class cls = Class.forName("com.reflect.Reflect");
Object obj = cls.newInstance();

//call the testMethod method
Method method = cls.getDeclaredMethod("testMethod", noparams);
method.invoke(obj, null);
} catch(Exception ex) {
ex.printStackTrace();
}
}
}

这里是link再次查看我放置自己示例的教程。

如果您必须动态加载 jar(如果它在编译时没有添加到类路径中),您可以通过这样做来做到这一点:

// Getting the jar URL which contains target class
URL[] classLoaderUrls = new URL[]{new URL("file:///home/ashraf/Desktop/simple-bean-1.0.jar")};
URLClassLoader child = new URLClassLoader (classLoaderUrls, this.getClass().getClassLoader());
Class classToLoad = Class.forName ("com.MyClass", true, child);
Method method = classToLoad.getDeclaredMethod ("myMethod");
Object instance = classToLoad.newInstance ();
Object result = method.invoke (instance);

关于java - 如何在运行时将新的java文件加载到现有的Jar中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35951914/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com