在我的项目中,我正在下载一个Applet,然后将其添加到类路径并显示它,但它似乎无法找到资源文件
File f = new File("jars/myAppletJar.jar");
URLClassLoader urlCl = new URLClassLoader(new URL[]{f.toURL()},System.class.getClassLoader());
Class clazz = urlCl.loadClass("MyAppletMainClazz");
String[] args = {};
new MainFrame((Applet) clazz.newInstance(), args, 400, 400);
在尝试查找该jar中的资源时抛出一个空指针。 小程序可以自行运行。
如何将动态添加的jar中的资源加载到类路径中?