如何在 Mac 上安装旧版本的 JDK?
我需要安装 JDK 5 来测试 Amazon Mechanical Turk API(与 JDK 6 不完全兼容)。在Apple的网站上,我只能找到最新的JDK。有没有办法获取适用于 Mac 的旧版本 JDK?
I need to install JDK 5 for testing Amazon mechanical turk APIs (which is not fully compatible with JDK 6). On Apple's website, I can only find the latest JDK. Is there a way to get older versions of JDKs for Mac?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这个提示可能有帮助:
10.6:在 Snow Leopard 中重新启用 Java 1.4.2 和 Java 1.5 应用
This hint might help :
10.6: Re-enable Java 1.4.2 and Java 1.5 apps in Snow Leopard
是的,这就是 mac 的问题。
如果您进行备份,则只需将包含 jdk 5 的旧文件夹从备份磁盘复制回您的计算机即可。为我工作。
Yes, this is the problem with macs.
If you do backups, then you can just copy old folders containing jdk 5 from backup disk back to your machine. Worked for me.
使用
use
您可以使用 javac 中的设置针对 1.5 jdk 进行编译。
对于您的情况:
您甚至可以在 IDE 中进行设置。或者您可以使用 maven 以及 maven.compile.target 和 maven.compile.properties 来完成此操作
资源:
You can compile against the 1.5 jdk with settings in javac.
In your case :
You can even set this in your IDE. Or you can do this with maven and the
maven.compile.target
andmaven.compile.properties
Resources :