0

我有一个特殊要求,我想将一个 HttpResponse(来自 Apache CORE API)对象作为额外的对象传递给另一个 Intent。

问题:我的 HTTP 服务器(Apache CORE)运行服务 S。当我收到 POST 请求时,应在执行意图 A 后发送响应,该意图 A 向已运行的服务 S 发送广播(其设计基于根据我的要求)。所以我需要在广播接收器中处理 HTTP POST 响应。这可能吗?因此,我需要将 handle() 方法中的 HttpResponse 发送到广播接收器并从那里发送响应。如果您需要更多详细信息,请告诉我。

我找到了传递原始类型(如字符串、整数类型等)的链接。感谢任何帮助。

4

3 回答 3

2

您可以使用Serializable如下界面:

// pass:
intent.putExtra("MotherClass", obj);

// receive:
getIntent().getSerializableExtra("MotherClass");

甚至更好,Parcelable如下使用(来自@BomberMan 的回答这个博客):

public class CustomObject1 implements Parcelable {

   // parcelable code CustomObject1
}
public class CustomObject2 implements Parcelable {

    private CustomObject1 obj1;

   // add  CustomObject1 here with getter setter
   // parcelable code for CustomObject2 

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeParcelable(obj1, flags);
    }  
    private void readFromParcel(Parcel in) {
        obj1 = in.readParcelable(CustomObject1.class.getClassLoader());
    }
  ............
} 
于 2013-01-20T19:52:36.667 回答
1

为了将对象作为额外的传递。您可能需要实现 Parclable 或 Serializable。但是 HttpResponse 的默认实现并没有实现两者。因此,您需要扩展 BasicHttpResponse 并实现其中之一。

于 2013-01-20T19:47:54.887 回答
0

我用了一个

HashMap<Object,Object> requestValue.put(response,"httpResponse"),

其中 response 是 HttpResponse 对象, httpResponse 是用作此请求 ID 的字符串。我在我的活动和服务之间传递了字符串。稍后,使用其值(字符串值)检索对象(键)的值。HttpResponse 没有实现 Serializable ,因此这很有效 :) 感谢大家的回复。

于 2013-01-21T14:23:28.393 回答