将 PublicKey 对象从服务传递到 Android 中的活动?
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您已经拥有公钥,则应将其放入 /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.htmlhope this helps.