- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我对 Serializable 和 Parcelable 很陌生。我很难将此对象的实例从应用程序传递到远程服务:
public class Event implements Parcelable, Cloneable {
/** Defines under what Bundle's key architecture events are stored */
public static final String BUNDLE_KEY = "ZKEvent";
/** Defines which messages are architecture's events */
public static final int MSG_WHAT = 0xDEFECABE;
/** Defines a key to store map under a Bundle to put into a Parcel (oh yeah!) */
private static final String MAP_KEY = "MAP";
/** Indicates this event ID. This ID should be the same in the event answer if any */
private int idEvent = 0;
/** Indicates this event priority */
private int priority = EventPriority.EVENT_PRIORITY_LOW;
/** ID for this event's sender */
private int idSource = 0;
/** ID for this event's destination */
private int idDestination = 0;
/** Action to be performed */
private int action = EventAction.DEFAULT;
public static final Parcelable.Creator<Event> CREATOR =
new Parcelable.Creator<Event>() {
public Event createFromParcel(Parcel in) {
return new Event(in);
}
public Event[] newArray(int size) {
return new Event[size];
}
};
/**
* Event's data
* Represented as
* key -> parameter;
* value -> data
*/
private Map<String, Object> data = new HashMap<String, Object>();
/** Default constructor */
public Event() {};
/** Contructor with ID of the event */
public Event(int id) {
idEvent = id;
}
/** Constructor for Parcelable */
public Event(Parcel in) {
readFromParcel(in);
}
/** Gets event's priority */
public int getPriority() {
return priority;
}
/** Sets this event's priority */
public void setPriority(int priority) {
this.priority = priority;
}
/** Gets the ID of this event's sender */
public int getIdSource() {
return idSource;
}
/** Sets the ID of this event's sender */
public void setIdSource(int idSource) {
this.idSource = idSource;
}
/** Gets the ID of this event's destination */
public Integer getIdDestination() {
return idDestination;
}
/** Sets the ID of this event's destination */
public void setIdDestination(Integer idDestination) {
this.idDestination = idDestination;
}
/** Gets the action of this event */
public int getAction() {
return action;
}
/** Sets the action of this event */
public void setAction(int action) {
this.action = action;
}
/** Gets the data of this event */
public Object getData(String key) {
return data.get(key);
}
/** Sets the data of this event */
public void addData(String key, Object data) {
this.data.put(key, data);
}
/** Gets the ID of this event */
public int getIdEvent() {
return idEvent;
}
/** Sets the ID of this event */
public void setIdEvent(int idEvent) {
this.idEvent = idEvent;
}
@Override
public Object clone() {
Event clone = new Event();
clone.action = this.action;
clone.idDestination = this.idDestination;
clone.idEvent = this.idEvent;
clone.idSource = this.idSource;
clone.priority = this.priority;
for(Entry<String,Object> entry: this.data.entrySet()) {
clone.data.put(entry.getKey(), entry.getValue());
}
return clone;
}
@Override
public int describeContents() {
// TODO Nothing here
return 0;
}
@Override
public void writeToParcel(Parcel out, int flags) {
out.writeInt(idEvent);
out.writeInt(priority);
out.writeInt(idSource);
out.writeInt(idDestination);
out.writeInt(action);
Bundle mapBundle = new Bundle();
mapBundle.putSerializable(MAP_KEY, (Serializable) data);
out.writeBundle(mapBundle);
}
/** Restoring this object from a Parcel */
public void readFromParcel(Parcel in) {
idEvent = in.readInt();
priority = in.readInt();
idSource = in.readInt();
idDestination = in.readInt();
action = in.readInt();
Bundle mapBundle = in.readBundle();
data = (Map<String, Object>) mapBundle.getSerializable(MAP_KEY);
}
}
所以我创建了这个 Event 类的新实例并将其传递给服务,如下所示:
/** Register with service */
private void registerWithService() {
Event registerEvent = EventFactory.getEvent();
registerEvent.setAction(EventAction.REGISTER);
registerEvent.setIdSource(1);
Bundle data = new Bundle();
data.putParcelable(Event.BUNDLE_KEY, registerEvent);
Message msg = new Message();
msg.setData(data); // Exception thrown here in the Service
msg.what = Event.MSG_WHAT;
try {
outMessenger.send(msg);
} catch (RemoteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
这里是远程服务抛出异常的地方:
public void handleMessage(Message msg) {
if (msg.what == Event.MSG_WHAT) {
// Get the data bundle
Bundle bundle = msg.getData();
// Extract the event from the message
Event event = (Event) bundle.get(Event.BUNDLE_KEY); // Exception thrown here
sendEvent(event);
} else {
Log.i(TAG, "Received non architecture message, dropping...");
}
}
堆栈跟踪:
07-09 12:38:10.947: E/AndroidRuntime(2234): FATAL EXCEPTION: main
07-09 12:38:10.947: E/AndroidRuntime(2234): android.os.BadParcelableException: ClassNotFoundException when unmarshalling: com.blabla.android.core.event.Event
07-09 12:38:10.947: E/AndroidRuntime(2234): at android.os.Parcel.readParcelable(Parcel.java:1958)
07-09 12:38:10.947: E/AndroidRuntime(2234): at android.os.Parcel.readValue(Parcel.java:1846)
07-09 12:38:10.947: E/AndroidRuntime(2234): at android.os.Parcel.readMapInternal(Parcel.java:2083)
07-09 12:38:10.947: E/AndroidRuntime(2234): at android.os.Bundle.unparcel(Bundle.java:208)
07-09 12:38:10.947: E/AndroidRuntime(2234): at android.os.Bundle.get(Bundle.java:260)
07-09 12:38:10.947: E/AndroidRuntime(2234): at com.blabla.android.core.event.EventManager$EventHandler.handleMessage(EventManager.java:44)
07-09 12:38:10.947: E/AndroidRuntime(2234): at android.os.Handler.dispatchMessage(Handler.java:99)
07-09 12:38:10.947: E/AndroidRuntime(2234): at android.os.Looper.loop(Looper.java:123)
07-09 12:38:10.947: E/AndroidRuntime(2234): at android.app.ActivityThread.main(ActivityThread.java:3683)
07-09 12:38:10.947: E/AndroidRuntime(2234): at java.lang.reflect.Method.invokeNative(Native Method)
07-09 12:38:10.947: E/AndroidRuntime(2234): at java.lang.reflect.Method.invoke(Method.java:507)
07-09 12:38:10.947: E/AndroidRuntime(2234): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
07-09 12:38:10.947: E/AndroidRuntime(2234): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
07-09 12:38:10.947: E/AndroidRuntime(2234): at dalvik.system.NativeStart.main(Native Method)
非常感谢任何帮助,谢谢!
最佳答案
在这种方法中,您永远不会将 Bundle 写入 Parcel:
public void writeToParcel(Parcel out, int flags) {
out.writeInt(idEvent);
out.writeInt(priority);
out.writeInt(idSource);
out.writeInt(idDestination);
out.writeInt(action);
Bundle mapBundle = new Bundle();
mapBundle.putSerializable(MAP_KEY, (Serializable) data);
// You need to actually write the Bundle to the Parcel here...
}
EDIT 为 ClassLoader 问题添加了额外的解决方案:
在远程服务的 handleMessage()
中设置类加载器,如下所示:
Bundle bundle = msg.getData();
bundle.setClassLoader(Event.class.getClassLoader());
Event event = (Event) bundle.get(Event.BUNDLE_KEY);
关于android - BadParcelableException:解码时出现 ClassNotFoundException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11393751/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!