在Natty 64位上安装32位JDK,我
我想在Ubuntu Natty(64位版本)下安装Oracle的JDK(32位版本)。虽然有 JRE(32 位版本)的包,但我想要 JDK(32 位版本)。
我想避免使用 .bin 文件提供的安装程序,而是使用 .deb 文件。然而,java-helper 包似乎在 Natty 中消失了。我能做些什么?
I want to install Oracle's JDK (32 bit version) under Ubuntu Natty (64 bit version). While there is a package for JRE (32 bit version), I want JDK (32 bit version).
I want to avoid the installer provided with the .bin file, and rather use a .deb file. However, it seems the package java-helper has disappeared in Natty. What can I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
无论您使用 32 位还是 64 位 JDK 并计划使用 32 位还是 64 位 JRE,Java 编译器都会生成相同的字节代码。
JDK 和 JRE 的位数不必相同,您也不太可能注意到其中的差异。 (最大内存可能是主要的)
The Java compiler produces byte code which is same whether you use the 32-bit or 64-bit JDK and plan to use the 32-bit or 64-bit JRE.
The bit-ness of the JDK and JRE don't have to be the same and its unlikely you will notice the difference. (The maximum memory is possibly the main one)
JDK 安装可以视为“zip”安装,这意味着安装程序只是将 jdk 的内容解压到您计算机上的目标目录。您可以尝试将所需的 jdk 目录复制粘贴到您的计算机上,并根据需要设置 JAVA_HOME 变量。上面的内容应该会起作用。
快乐编码!
The JDK installation can be treated as 'zip' installation, which means that the installer simply unzips the content of jdk to the target directory on your machine. You can try to copy-paste the required jdk directory to your machine and probably set JAVA_HOME variable if needed. The above should do the magic.
Happy coding!