使用 JNLP API 获取 .jnlp 文件内资源下的 JAR
有没有办法获取 Java WebStart 的 .jnlp 文件中
下引用的 JAR 文件?我认为 JNLP API 可以提供帮助,但没有找到任何方法。有什么想法吗?
示例:
[...]
<resources>
<j2se version="1.6.0+" />
<jar href="../lib/wsfacade.jar"/>
<jar href="../lib/resources.jar"/>
</resources>
[...]
例如,我想获取 wsfacade.jar 的路径,这可能吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JNLP API 中的 DownloadService2 接口可以为您提供应用程序的资源:
参考:
http://download.oracle.com/javase/6/docs/technotes/guides/javaws/developersguide/examples.html#DownloadService2
http://download.oracle.com/javase/6/docs/jre/api/javaws/jnlp/javax/jnlp/DownloadService2.html
The DownloadService2 interface from the JNLP API can give you the resources of the application:
For the reference:
http://download.oracle.com/javase/6/docs/technotes/guides/javaws/developersguide/examples.html#DownloadService2
http://download.oracle.com/javase/6/docs/jre/api/javaws/jnlp/javax/jnlp/DownloadService2.html