Android - 可序列化接口的问题

发布于 2024-12-06 06:46:14 字数 437 浏览 0 评论 0原文

我一直在使用 Serialized 接口将对象从一个活动传递到另一个活动。我在发送方使用 putExtra ,在接收方使用 getSerialized 。一切正常,但我(第一次)收到以下错误报告:

java.lang.RuntimeException:Parcelable 读取时遇到 IOException 可序列化对象

我不明白为什么会生成此异常,因为我使用的是 getSerialized 而不是 getParcelable

我知道我应该实现 Parcelable 接口,因为它是专门为 Android 设计的(这就是我最终要做的),但我想了解为什么会出现此错误。

谢谢!

I have been using the Serializable interface to pass an object from one activity to another. I am using putExtra on the sender side and getSerializable on the receiver side. Everything works fine but I have received (for the first time) the following error report:

java.lang.RuntimeException: Parcelable encountered IOException reading
a Serializable object

I don't understand why this exception has been generated since I am using getSerializable and not getParcelable.

I know that I should implement the Parcelable interface instead because it has been designed specifically for Android (and that's what I will end up doing) but I want to understand why I am getting this error.

Thanks!

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

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

发布评论

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

评论(1

許願樹丅啲祈禱 2024-12-13 06:46:14

此错误中提到了 Parcelable,因为您从一个 Activity 发送到另一个 ActivityIntent 内部有一个 Bundle,并且此Bundle可打包。当您调用 Intent.putExtra() 时,此额外内容将添加到内部 Bundle 中。当 Intent 在活动之间传递时,其 Bundle 会与字节数组相互转换,您的 Serialized 对象也是如此。

但我不知道为什么会出现这个错误。也许是因为 writeObject()/readObject() 实现中存在一些错误。

Parcelable is mentioned in this error because an Intent you send from one Activity to another has a Bundle inside and this Bundle is Parcelable. When you call Intent.putExtra() this extra is added to the inner Bundle. When Intent is passed between activities its Bundle is converted to and from a byte array and so is your Serializable object.

But I don't know why this error occurs. Maybe it's because of some bug in writeObject()/readObject() implementation.

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