Linux (Ubuntu) Java 插件和控制台

发布于 2024-10-10 00:54:57 字数 680 浏览 1 评论 0原文

我正在尝试在 Ubuntu 10.10 的 Firefox 中测试 Java 小程序。不幸的是它不能开箱即用。我有两个问题:

  1. 默认情况下使用 IcedTea 插件,但我不信任该插件。我安装了 sun-java6-plugin 但不知道 Firefox(和其他浏览器)现在使用哪一个。我如何确定? 只需删除冰茶即可解决此问题。
  2. 我没有控制台。通常可以通过 Windows 中的托盘图标访问它,但这里不行(也许这会被 #1 自动修复 不,不是)。有这个插件,但它不再起作用了。 更新:我已经通过转到Java控制面板并在高级选项卡中选中“显示控制台”来解决这个问题,但现在控制台总是弹出,这还不是很完美。

我正在通过 JNLP 部署小程序。如果有帮助的话,您可以在此处查看。我将 sun-java6-jdk 作为默认 Java。

(很抱歉,如果这个问题属于 SuperUser 或其他网站,但我认为对于 #2 尤其是这是一个与编程相关的问题)

I'm trying to test a Java applet in Firefox in Ubuntu 10.10. Unfortunately it doesn't work out of the box. I have two issues:

  1. By default the IcedTea plugin was used, which I don't trust. I installed sun-java6-plugin but have no idea which one is used by Firefox (and other browsers) now. How can I make sure? Fixed this by simply removing icedtea.
  2. I have no console. It's usually accessible via a tray icon in Windows, but not here (maybe this will automatically be fixed by #1 though No it wasn't). There's this addon but it doesn't work anymore.
    Update: I've sort of fixed this by going to the Java control panel and checking "Show Console" in the advanced tab, but now the console always pops up which isn't quite perfect yet.

I'm deploying the applet via JNLP. You can see it here, if it helps. I have sun-java6-jdk as the default Java.

(Sorry if this question belongs on SuperUser or another site, but I figured that with #2 especially this is a programming related question)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

未央 2024-10-17 00:54:57

With :

sudo update-alternatives --install "/usr/bin/java" "java" "/opt/java/64/jre1.6.0_20/bin/java" 1
sudo update-alternatives --set java /opt/java/64/jre1.6.0_20/bin/java

你可以设置默认的jre(在本例中是64位的)

java -version

你可以看到版本

With about:plugins 你可以看到firefox正在使用哪个jre

With :

sudo update-alternatives --install "/usr/bin/java" "java" "/opt/java/64/jre1.6.0_20/bin/java" 1
sudo update-alternatives --set java /opt/java/64/jre1.6.0_20/bin/java

You can set the default jre (in this case a 64 bits one)

with:

java -version

you can see the version

With about:plugins you can see which jre firefox is using

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