配置JNLP的权限:
我正在尝试运行一个 webstart 演示,该演示在我朋友的 Windows 计算机上运行,但在我的 Ubuntu Linux 机器上引发访问错误。
javaws http://common.l2fprod.com/jnlp/demo.jnlp
我的 Linux 机器上出现以下错误:
java.security.AccessControlException: access denied (java.util.PropertyPermission javawebstart.version read)
我认为这是我的 Ubuntu 机器上的配置问题。需要更改什么才能允许访问 webstart 版本?
I'm trying to run a webstart demo, which ran on my friend's Windows machine, but throws an access error on my Ubuntu Linux box.
javaws http://common.l2fprod.com/jnlp/demo.jnlp
And I get the following error on my Linux box:
java.security.AccessControlException: access denied (java.util.PropertyPermission javawebstart.version read)
I assume this is a configuration issue on my Ubuntu machine. What needs to be changed to allow access to the webstart version?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认 Java 安装与您在 Windows 计算机上显式下载的安装不同。
将默认值更改为 Sun Java 6 JDK,然后
重试。对于 Ubuntu 10.4,首先启用相应的存储库
([规范发行说明][1] - 注意 StackOverflow 中的链接中断,手动复制)
[1]: https://wiki.ubuntu.com/LucidLynx/ReleaseNotes#Sun Java 已移至合作伙伴存储库
The default Java installation is different from the one you download explicitly on a Windows machine
Change the default to the Sun Java 6 JDK with
and try again. For Ubuntu 10.4, first enable the appropriate repository with
([Canonical release note][1] - note link breaks in StackOverflow, copy manually)
[1]: https://wiki.ubuntu.com/LucidLynx/ReleaseNotes#Sun Java moved to the Partner repository