Where is the Keytool application?

2019-01-21 21:06发布

I need to use mapview control in android and I can't seem to understand how to run keytool. Is it installed with eclipse? I can't seem to find a download link.

Thanks

8条回答
趁早两清
2楼-- · 2019-01-21 21:38

If you are working with a Mac... the keytool is part of the Java SDK and can be found in the following location /System/Library/Java/JavaVirtualMachines/[VERSION].jdk/Contents/Home/bin/keytool

查看更多
beautiful°
3楼-- · 2019-01-21 21:39

here: C:\Program Files\Java\jre7\bin it is an exe keytool.exe

查看更多
Emotional °昔
4楼-- · 2019-01-21 21:45

keytool is part of the standard java distribution.

In a windows 64-bit machine, you would normally find the jdk at

C:\Program Files\Java\jdk1.8.0_121\bin

It is used for managing keys and certificates you can sign things with, in your case, probably a jar file.

If you provide more details of what you need to do, we could probably give you a more specific answer.

查看更多
女痞
5楼-- · 2019-01-21 21:46

It is in path/to/jdk/bin. Make sure that $JAVA_HOME is defined, and $JAVA_HOME/bin is added to $PATH, or else the 'keytool' command won't be recognized when called.

查看更多
小情绪 Triste *
6楼-- · 2019-01-21 21:47

keytool is a tool to manage key and certificates. It is provided with any standard JDK distribution and can be located in %JAVA_HOME%\bin.

查看更多
霸刀☆藐视天下
7楼-- · 2019-01-21 21:49

If you have java installed of course keytool is in there. What you need to do is to add it on your PATH variable.

查看更多
登录 后发表回答