SDK调试证书的Android MD5指纹
我在获取 SDK 调试证书的 MD5 指纹时遇到一些问题。我在命令行中输入: keytool -list -alias androiddebugkey -keystore debug.keystore -storepass android -keypass android
。我得到“keytool 未被识别为内部或外部命令”。 这是我的命令行。
我非常感谢尽快得到答复。
I have some issues obtaining the MD5 Fingerprint of the SDK Debug Certificate . I type this in the command line : keytool -list -alias androiddebugkey -keystore debug.keystore -storepass android -keypass android
. I get " keytool is not recognized as an internal or external command" . This is my command line .
I would really appreciate an answer asap.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在命令提示符中,首先找到您的
keytool
,您可以在 jdk 内的bin 中找到它。现在尝试上面的命令,它会识别它。
您可以点击此链接和这个。
In your command prompt first locate your
keytool
which you can find it in yourbin inside jdk
. Now try above command, it will recognize it.you can follow this link and this.
作为替代方案,您始终可以检索随您的 Android SDK 版本附带的 Eclipse 内的调试密钥库的指纹。
打开窗口->首选项对话框。在Android->构建下,您会看到以下信息:
还可以切换到自定义调试密钥库。
As an alternative you can always retrieve the fingerprints of the debug keystore inside the Eclipse that came with your version of Android SDK.
Open the Window->Preferences dialog. There under Android->Build you see the following information:
It's there possible to also switch to a custom debug keystore.
这可能是因为你的系统路径中没有jdk的bin文件夹。
在 Windows 中:c:\Programs file\Java\jdk1.X.*Y*\bin\
或者,如果您使用 Eclipse,则可以从 < a href="http://keytool.sourceforge.net/" rel="nofollow">此处
That's probably because you don't have the jdk's bin folder in your system's path.
In windows: c:\Programs file\Java\jdk1.X.*Y*\bin\
alternatively, if you are using Eclipse, you can install the keytool from here