错误:JsonHttpResponseHandler无法解析为某个类型

时间:2013-09-10 11:27:24

标签: android android-twitter

以下是显示上述错误的代码

    import org.json.*;
import com.loopj.android.http.*;

class TwitterRestClientUsage {
    public void getPublicTimeline() throws JSONException {
        TwitterRestClient.get("statuses/public_timeline.json", null, new JsonHttpResponseHandler() {
            @Override
            public void onSuccess(JSONArray timeline) {
                // Pull out the first event on the public timeline
                JSONObject firstEvent = timeline.get(0);
                String tweetText = firstEvent.getString("text");

                // Do something with the response
                System.out.println(tweetText);
            }
        });
    }
}

在get方法中我收到此错误,请您为此建议合适的解决方案。

1 个答案:

答案 0 :(得分:0)

需要添加asyncHttpClent jar来修复此问题。