Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
如果 Swing 足够新的话,它将包含在 JVM 中。
请参阅此页面。
Swing will be included in the JVM, if it's new enough.
See this page.
如果您正在寻找 JRE 来运行桌面应用程序,您可以在 $PATH 中检查“java”可执行文件,查找 $JRE_HOME 或 $JAVA_HOME环境变量。找到 JRE 后,使用 java -version 获取其版本。
$PATH
$JRE_HOME
$JAVA_HOME环境变量。找到 JRE 后,使用 java -version 获取其版本。
如果您尝试部署小程序,请使用 Java部署工具包。
If you are looking for a JRE to run a desktop application, you can check for the 'java' executable in $PATH, look for $JRE_HOME or $JAVA_HOME environment variables. Once a JRE is found use java -version to get its version.
$JAVA_HOME
If you are trying to deploy an applet, use the Java Deployment Toolkit.
Swing 包含在默认的 Java JRE 中。所以只是:
sudo apt-get install openjdk-6-jre
如果您需要 JDK(用于开发),那么:
sudo apt-get install openjdk-6-jdk
就版本而言,它应该与 Java 6 兼容。您可以通过以下方式检查确切的包版本:
apt-cache show openjdk-6-jre
Swing is included in the default Java JRE. So just:
If you need the JDK (to develop on), it's:
As far as the version, it should be compatible with Java 6. You can check the exact package version with:
这是 Ubuntu 的 Java 安装页面,涵盖了从 SDK 到 Web 浏览器的所有内容。
Here's the Java installation page for Ubuntu that covers everything from SDK to web browsers.
java -version
如果它显示了一些有意义的内容,那就没问题;你在那台机器上有秋千。
If it says something meaningful, you're fine; you have swing on that machine.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(5)
如果 Swing 足够新的话,它将包含在 JVM 中。
请参阅此页面。
Swing will be included in the JVM, if it's new enough.
See this page.
如果您正在寻找 JRE 来运行桌面应用程序,您可以在
$PATH
中检查“java”可执行文件,查找$JRE_HOME
或$JAVA_HOME环境变量。找到 JRE 后,使用 java -version 获取其版本。
如果您尝试部署小程序,请使用 Java部署工具包。
If you are looking for a JRE to run a desktop application, you can check for the 'java' executable in
$PATH
, look for$JRE_HOME
or$JAVA_HOME
environment variables. Once a JRE is found use java -version to get its version.If you are trying to deploy an applet, use the Java Deployment Toolkit.
Swing 包含在默认的 Java JRE 中。所以只是:
如果您需要 JDK(用于开发),那么:
就版本而言,它应该与 Java 6 兼容。您可以通过以下方式检查确切的包版本:
Swing is included in the default Java JRE. So just:
If you need the JDK (to develop on), it's:
As far as the version, it should be compatible with Java 6. You can check the exact package version with:
这是 Ubuntu 的 Java 安装页面,涵盖了从 SDK 到 Web 浏览器的所有内容。
Here's the Java installation page for Ubuntu that covers everything from SDK to web browsers.
java -version
如果它显示了一些有意义的内容,那就没问题;你在那台机器上有秋千。
java -version
If it says something meaningful, you're fine; you have swing on that machine.