创建密钥库文件时遇到问题

发布于 2024-11-05 11:06:15 字数 348 浏览 0 评论 0原文

我按照开发网站的说明来签署您的应用程序,我进入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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暮年 2024-11-12 11:06:15

尝试不使用

-keystore mykey.keystore 

,以便它使用默认名称($HOME/.keystore)。

Try without

-keystore mykey.keystore 

so that it uses the default name ($HOME/.keystore).

海未深 2024-11-12 11:06:15

为什么不在 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文