在 Android 中持久保存 Parcelable 对象

发布于 2024-12-03 13:37:38 字数 230 浏览 2 评论 0原文

我的 Android 应用程序中有一个类,我已将其设置为 Parcelable,以便它可以在 Activity 之间传递。

我希望能够将该对象保存到文件系统中。看来,由于我已经实现了 Parcelable,因此将其输出传输到文件系统并稍后读回是有意义的。

有正确的方法吗?或者,如果我想在 Activity 之间传递对象并将其保存到文件系统,我必须同时实现 Parcelable 和 Serialiazble 吗?

I have a class in my Android app that I've made Parcelable so that it can be passed between Activities.

I would like to be able to save this object to the filesystem. It seems that since I've already implemented Parcelable, it would make sense to pipe the output of this to the filesystem and read it back later.

Is there a correct way to do this? Or must I implement both Parcelable and Serialiazble if I want to both pass the object between Activities and also save it to the filesystem?

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

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

发布评论

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

评论(2

一影成城 2024-12-10 13:37:38

来自 http://developer.android.com/reference/android/os/Parcel。 html

Parcel 不是通用的序列化机制。该类(以及用于将任意对象放入 Parcel 的相应 Parcelable API)被设计为高性能 IPC 传输。因此,将任何 Parcel 数据放入持久存储中是不合适的:Parcel 中任何数据的底层实现的更改都可能导致旧数据不可读。

From http://developer.android.com/reference/android/os/Parcel.html

Parcel is not a general-purpose serialization mechanism. This class (and the corresponding Parcelable API for placing arbitrary objects into a Parcel) is designed as a high-performance IPC transport. As such, it is not appropriate to place any Parcel data in to persistent storage: changes in the underlying implementation of any of the data in the Parcel can render older data unreadable.

爱已欠费 2024-12-10 13:37:38

对于这个问题,我执行了以下操作:

  1. 在我的对象中实现了可序列化
  2. 添加了 toJSON() 方法以将对象转换为 JSON 对象
  3. 使用自定义 JSONSerializer 将 JSON 对象写入文件
  4. 添加了一个将 JSON 对象作为对象的构造函数参数,由自定义 JSONSerializer 使用

它最终非常简单...如果需要,我可以粘贴一些示例代码。

For this problem, I did the following:

  1. Implemented Serializable in my object
  2. Added a toJSON() method to convert the object to a JSON object
  3. Used a custom JSONSerializer to write the JSON objects to a file
  4. Added a constructor that takes a JSON object as a parameter, used by the custom JSONSerializer

It ended up being pretty simple...I can paste some sample code if needed.

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