我正在制作一个 Android 应用程序,它通过网络以字节数组的形式发送 2 种类型的对象,这些对象实现了 Parcelable 接口(我们称它们为 objectA 和 objectB)。但在接收端,我需要知道包裹中到达的是哪种类型的物体。Parcel.readValue() 方法仅返回 Object,因此在接收端我不知道应该重新创建 objectA 或 objectB 哪个对象。如何才能做到这一点?包裹中是否有某种描述原始对象类型的元数据?编辑:语言是Java编辑:添加示例代码 ObjectA objA = new ObjectA("uid", "description"); byte[] bytes = ParcelUtil.toBytes(objA); //this simulates the sending Object rebuilt = ParcelUtil.rebuildFromBytes(bytes); //here I don't know what am I rebuilding, objectA or objectB if(rebuilt instanceof Parcel){ Parcel p = (Parcel) rebuilt; ObjectB oB = (ObjectB) p.readValue(ObjectB.class.getClassLoader()); if(oB.getUid() == null){ ObjectA oA = (ObjectA) p.readValue(ObjectA.class.getClassLoader()); //this will also be full of null values } }
1 回答
弑天下
TA贡献1818条经验 获得超8个赞
我想您可以访问可能是您收到的对象的可能类型的类。在Java中,您可以简单地使用instanceof运算符来检查您收到的对象是什么:
if (yourObject instanceof YourClass) {
// Your code here
}
对于 Parcels,有一个接受类加载器的 readValue 方法,使用您的类加载器调用此方法,它应该可以工作,例如:
Point pointFromParcel = (Point) parcel.readValue(Point.class.getClassLoader());
https://developer.android.com/reference/android/os/Parcel#readValue(java.lang.ClassLoader)
如果您不知道包装器类将是什么对象,您可以创建一个包装器类,其中包含 ObjectA 或 ObjectB 以及一个指示包装器当前持有哪个对象的字段。
添加回答
举报
0/150
提交
取消