0

我浏览URL API了 Oracle 文档。我想构建位于远程机器上URI的引用Jars,但是从规范中我无法确定如何使用它们。该文件提供RFC2396了规格参考。但是,这也没有为其用法提供任何具体示例。

4

1 回答 1

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");
于 2015-05-31T08:30:54.843 回答