我是在Mac OSX上开发
Java的新手.我想下载
Java 7 EE SDK,这样我就可以使用Java进行桌面/移动/企业开发.下载文件是.sh(特别是java_ee_sdk-7-jdk7-macosx-x64),我不熟悉. Java 7 SE SDK是一个.dmg文件,它是我期望的Enterprise Edition而不是.sh文件的格式.
>为什么SE和EE版本的文件格式不同? (.sh vs .dmg)
>如何安装企业版,因为它是.sh
文件?
*注意:目前我在Mac上安装的唯一JRE是Apple版本,据我所知已被弃用.
解决方法
在命令行运行它.
从安装手册:Java Platform,Enterprise Edition 7 SDK – Installation Instructions
Solaris,Linux,and Mac OS X systems:
If necessary,grant execute
permissions to the distribution file: chmod +x ./
distribution-filenameAt the command prompt,type: sh ./
distribution-filename
为了将来参考,* .sh文件是shell script.您可以检查文件第一行的shebang(#!),以查看应该使用哪个shell来解释脚本.对于JavaEE 7安装程序,shebang是#!/ bin / sh,表示应该使用Bourne compatible shell.