How do I check if the Java JDK is installed on Mac?

前端 未结 9 855
误落风尘
误落风尘 2021-01-29 21:48

How do you check if Java SDK is installed on a Mac?

Is there a command line for this?

9条回答
  •  半阙折子戏
    2021-01-29 22:21

    /usr/bin/java_home tool returns 1 if java not installed.

    So you can check if java is installed by the next way:

    /usr/libexec/java_home &> /dev/null && echo "installed" || echo  "not installed"
    

提交回复
热议问题