欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

'keytool' is not recognized as an internal or external command解决方案 博客分类: 异常 keytoolcommand环境变量 

程序员文章站 2024-03-12 09:26:02
...
Java命令无法找到,原因比较负责涉及到环境变量的设置和冲突等等。
当我们在运行命令:
C:\>keytool -genkey -keystore test.store -alias test -validity 31

时,出现了这个错误:
'keytool' is not recognized as an internal or external command,operable program or batch file.

具体的解决方案也很简单,请给keytool命令加上路径:
例如:
D:\Java\jdk1.6.0_26\bin\keytool -genkey -keystore test.store -alias test -validity 31