Mint Linux - 将 Java 降级到 1.5
目前,我正在运行 Mint Linux(第 9 版)。我需要将 Java 从版本 1.6 降级到 1.5,并且一直在尝试弄清楚如何解决这个问题。到目前为止,我还没有运气。包管理器好像没有。
有人有什么建议吗?
谢谢,
- 克里斯
Currently, I am running Mint Linux (Release 9). I need to downgrade Java from version 1.6 to 1.5, and have been trying to figure out how to go about this. So far, I've had no luck. The package manager doesn't seem to have it.
Does anyone have any suggestions?
Thanks,
- Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正如您在评论中所解释的,您需要 JDK 5,因为您正在处理 Android 本身的源代码和
您可以执行以下操作:
sudo
运行 JDK 安装程序,将其安装在您喜欢的任何位置(例如在/opt
或/usr/local 中)
)PATH
环境变量以包含 JDK 的bin
目录As you explained in your comments, you need JDK 5 because you are working on the source code of Android itself and the instructions say:
You can do this:
sudo
, install it wherever you like (for example in/opt
or/usr/local
)PATH
environment variable to include thebin
directory of the JDK无需降级 Java 安装即可针对 Java 1.5 进行开发。如果您使用的是 Eclipse 等工具,则可以设置项目属性,以便测试 Java 1.5 兼容性,并在使用 Java 6 功能时给出错误。如果您绝对坚持使用 Java 1.5 JDK,那么只需将其与默认安装一起安装并使用它来代替 Java 1.6。
There should be no need to downgrade your Java installation to develop for Java 1.5. If you are using a tool such as Eclipse, you can set the project attributes so that it tests for Java 1.5 compatibility, and gives errors if you use a Java 6 feature. If you absolutely insist on having a Java 1.5 JDK then just install it alongside the default installation and use it in place of Java 1.6.
这应该是 SuperUser.com 的问题,但我的建议是下载 1.5 JDK,并将 Java 路径更改为下载位置。
或者您可以使用 Ubuntu 帮助 上的信息,它应该对您有用,因为 Mint 基于乌班图。该链接解释了如何选择 Java 版本。
This should be a question for SuperUser.com, but my recommendation is to download the 1.5 JDK, and change Java path to where you downloaded it.
Or you could use the info on Ubuntu Help, it should work for you since Mint is based on Ubuntu. That link explains how to select the version of Java.