Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以判断JAVA_HOME系统环境变量是否包含 Windows 批处理文件中的 JDK?
JAVA_HOME
您可以查找 %JAVA_HOME%\bin\javac.exe (或任何它,我假设是 exe)。这不应该存在于 JRE 中,只存在于 JDK 中。
如果您正在检查编译器是否存在,您可以执行以下操作:
if exist %JAVA_HOME%\bin\javac.exe ( ... ) else ( ... )