Where is the Keytool application?

后端 未结 8 1653
你的背包
你的背包 2020-12-02 14:07

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

相关标签:
8条回答
  • 2020-12-02 14:20

    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.

    0 讨论(0)
  • 2020-12-02 14:24

    keytool it's a binary file into the JDK folder ... just add your JDK as environment variable by adding the following line

    C:\Program Files\Java\jdk1.8.0_65\bin
    
    0 讨论(0)
  • 2020-12-02 14:26

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

    0 讨论(0)
  • 2020-12-02 14:29

    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

    0 讨论(0)
  • 2020-12-02 14:41

    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.

    0 讨论(0)
  • 2020-12-02 14:42

    keytool is a tool to manage (public/private) security keys and certificates and store them in a Java KeyStore file (stored_file_name.jks).
    It is provided with any standard JDK/JRE distributions.
    You can find it under the following folder %JAVA_HOME%\bin.

    0 讨论(0)
提交回复
热议问题