Mac OS Catalina 安装Java6

Mac 推出了最新的Mac OS Catalina,我第一时间升级了,结果发现了一个尴尬的事儿,Apple提供的JAVA6无法安装,安装的时候提示无法安装,磁盘上已经有了更新的版本,经过一波查找。发现了解决方案。现在记录下来:

1、先在https://support.apple.com/kb/DL1572?locale=zh_CN 把安装包下载下来。

2、打开Mac 自带的脚本编辑器。贴上下面脚本:

set theDMG to choose file with prompt "Please select javaforosx.dmg:" of type {"dmg"}

do shell script "hdiutil mount " & quoted form of POSIX path of theDMG

do shell script "pkgutil --expand /Volumes/Java\\ for\\ macOS\\ 2017-001/JavaForOSX.pkg ~/tmp"

do shell script "hdiutil unmount /Volumes/Java\\ for\\ macOS\\ 2017-001/"

do shell script "sed -i '' 's/return false/return true/g' ~/tmp/Distribution"

do shell script "pkgutil --flatten ~/tmp ~/Desktop/ModifiedJava6Install.pkg"

do shell script "rm -rf ~/tmp"

display dialog "Modified ModifiedJava6Install.pkg saved on desktop" buttons {"Ok"}

4、然后选择编译脚本。

5、编译完成后执行脚本,执行的过程中会让你打开刚刚下载的pkg。选择你刚才下载java 6 安装包。

6、完成后脚本会自动生成一个安装包放在桌面上。

7、用新的安装包安装就可以了。

 

如果编译失败,也可以直接下载我编译好的安装包 https://download.csdn.net/download/yin_jone/11862675

你可能感兴趣的:(Mac,OS,Catalina,Java6)