我在Oracle文档中查看了URL API
。我想构建URI
来引用位于远程计算机上的Jars
,但是从规范中我无法弄清楚如何使用它们。该文档提供了RFC2396
的规格参考。但是,它也没有为其使用提供任何具体的例子。
答案 0 :(得分:0)
以下代码对于jar加载非常有用
Method method = URLClassLoader.class.getDeclaredMethod("addURL", new Class[]{URL.class});
method.setAccessible(true);
method.invoke(ClassLoader.getSystemClassLoader(), new Object[]{new URL("http://somewhere.net/library.jar")});
Class.forName("your.remote.ClassName");