将 PublicKey 对象从服务传递到 Android 中的活动?

发布于 2024-12-27 13:11:21 字数 117 浏览 2 评论 0原文

我正在尝试将 PublicKey 对象从服务传递到活动。但是,Aidl 似乎不支持 PublicKey 类型。关于如何做到这一点有什么想法吗?

I'm trying to pass a PublicKey object from a service to an activity. However, the Aidl doesn't seem to support the PublicKey type. Any ideas on how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

多情出卖 2025-01-03 13:11:21

如果您已经拥有公钥,则应将其放入 /res/raw/ 文件夹中并从那里检索。或者将其存储在文件系统中 activity.getFilesDir().getAbsolutePath() 将是您的路径。您还可以使用 - 通过 IPC 传递对象,如文章 http:// developer.android.com/guide/developing/tools/aidl.html
希望这有帮助。

If you already have your public key you should put it into the /res/raw/ folder and retrieve it from there. Or store it in filesystem activity.getFilesDir().getAbsolutePath() would be your path. You can also use - pass Objects over IPC as described here in the article http://developer.android.com/guide/developing/tools/aidl.html
hope this helps.

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