创建密钥库文件时遇到问题
我按照开发网站的说明来签署您的应用程序,我进入cmd,进入jdk文件夹并输入此内容。
keytool -genkey -v -keystore mykey.keystore -alias coffee -keyalg RSA -keysize 2048 -validity 10000
在我输入密码和我的名字等后,它给了我一条错误消息,说
keytool error: java.io.FileNotFoundException: mykey.keystore
我得到了我输入的代码会生成一个密钥库文件以及我的应用程序的密钥。那么出了什么问题呢?
I was following the and dev website's instructions for signing your app and I went into the cmd, went to the jdk folder and typed this in.
keytool -genkey -v -keystore mykey.keystore -alias coffee -keyalg RSA -keysize 2048 -validity 10000
After I put in a password and my name etc it gave me an error message that said
keytool error: java.io.FileNotFoundException: mykey.keystore
I got the impression that the code I enterted would generate a keystore file as well as the key for my app. So what's gone wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试不使用
,以便它使用默认名称($HOME/.keystore)。
Try without
so that it uses the default name ($HOME/.keystore).
为什么不在 eclipse 中为您的项目生成密钥库?
文件->导出->安卓->导出 Android 应用程序
应该是不言自明的。
我会继续查找如何从命令行执行此操作,如果我看到任何有价值的内容,我会发布!
但要获得有关命令行的更多帮助,请阅读以下内容:
http://www.androiddevelopment.org/tag/keytool/
Why dont you generate the keystore in eclipse for your project?
File -> Export -> Android -> Export Android Application
Should be self explanatory from there.
I'll keep looking up how to do it from command line and post if I see anything worthwhile!
But for further help with command line read this:
http://www.androiddevelopment.org/tag/keytool/