如何在 jnlp 文件中指定 JRE 范围?
我们有一个使用 Java Web Start 的 java 应用程序。 jnlp 文件配置为 [j2se version="1.5+"]。因此,如果安装了 JRE 1.5 和 1.6,则应用程序将在 1.6 上运行。
现在,我们有一个要求,即应用程序应限制为仅在范围内运行 - JRE 1.5.0_07 到 JRE 1.5.0_17
[j2se version="1.5*"] 将不起作用 - 它将始终使用最新的 jre 启动应用程序来自1.5家庭。
我可以通过包含 href 属性来请求准确的产品版本。 [j2se version="1.5.0_14" href="http://java.sun.com/products/autodl/j2se"/]
但是如何在 jnlp 文件中指定特定范围的 JRE,以便 JWS 选取仅限该范围内的 JRE?因此,如果安装了 1.5.0_07、1.5.0_17 和 JRE 6,则应在 1.5.0_17 上运行该应用程序。
有没有好的方法来实现这一点?
We have a java app which uses Java Web Start. The jnlp file is configured with [j2se version="1.5+"]. So if JRE 1.5 and 1.6 are installed, the app is run on 1.6.
Now, we have requirement where the app should be restricted to run only within the range - JRE 1.5.0_07 through JRE 1.5.0_17
[j2se version="1.5*"] will not work - it will always launch the app with the latest jre from 1.5 family.
I can request an exact product version by including the href attribute.
[j2se version="1.5.0_14" href="http://java.sun.com/products/autodl/j2se"/]
But how do I specify a specific range of JREs in the jnlp file so that JWS picks up a JRE from that range only? So if 1.5.0_07, 1.5.0_17 and JRE 6 are installed, it should run the app on 1.5.0_17.
Is there a good way to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这并不漂亮,但这可能有用。
我把这一行打断了,这样你就可以阅读它,但它只是 jnlp 中的一行。
It's not pretty, but this might work.
I broke the line so you can read it, but it's all one line in the jnlp.
我认为你想要的是:
请参阅: http://docs.oracle.com/javase/1.5.0/docs/guide/javaws/developersguide/syntax.html#resources
我还研究了 Java 6 / Java 7,它看起来也可以在那里工作。
http://docs.oracle.com /javase/6/docs/technotes/guides/javaws/developersguide/syntax.html#resources
http://docs.oracle.com/javase/7/docs/technotes/guides/javaws/developersguide/syntax.html#resources
I think what you want is:
See: http://docs.oracle.com/javase/1.5.0/docs/guide/javaws/developersguide/syntax.html#resources
I've also looked at the Java 6 / Java 7 at it looks like it will work there as well.
http://docs.oracle.com/javase/6/docs/technotes/guides/javaws/developersguide/syntax.html#resources
http://docs.oracle.com/javase/7/docs/technotes/guides/javaws/developersguide/syntax.html#resources