gpt4 book ai didi

java - 是否可以在运行时加载库?

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:56:40 25 4
gpt4 key购买 nike

如果 java 库(.jar 文件)不在类路径中,有没有办法在运行时加载它?

最佳答案

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);

来源:How should I load Jars dynamically at runtime?

关于java - 是否可以在运行时加载库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4112084/

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