配置JNLP的权限:

发布于 2024-09-08 16:30:03 字数 378 浏览 5 评论 0原文

我正在尝试运行一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

﹎☆浅夏丿初晴 2024-09-15 16:30:03

默认 Java 安装与您在 Windows 计算机上显式下载的安装不同。

将默认值更改为 Sun Java 6 JDK,然后

sudo apt-get install sun-java6-jdk

重试。对于 Ubuntu 10.4,首先启用相应的存储库

add-apt-repository "deb http://archive.canonical.com/ lucid partner"

([规范发行说明][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

sudo apt-get install sun-java6-jdk

and try again. For Ubuntu 10.4, first enable the appropriate repository with

add-apt-repository "deb http://archive.canonical.com/ lucid partner"

([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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文