如何在运行时将外部jar文件动态添加到类路径中?
我想使用 Java 代码将 JAR 文件动态添加到项目的类路径中。如果可能的话,我想使用外部jar文件并加载它们的类,然后稍后将它们作为bean执行(Spring Framework)。
我想使用 Java 代码将 JAR 文件动态添加到项目的类路径中。如果可能的话,我想使用外部jar文件并加载它们的类,然后稍后将它们作为bean执行(Spring Framework)。
URLClassLoader child = new URLClassLoader (myJar.toURL(), 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);
你可以尝试这样的事情,但它需要你知道,你到底在哪里。JARs
URLClassLoader cl = URLClassLoader.newInstance(new URL[] {myJarFiles});
Class myClass = cl.loadClass("com.mycomp.proj.myclass");
Method printMeMethod = myClass.getMethod("printMe", new Class[] {String.class, String.class});
Object myClassObj = myClass.newInstance();
Object response = printMeMethod.invoke(myClassObj, "String1", "String2");