0

这是我的代码显示上述错误

    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 方法中我收到此错误,请您为此建议合适的解决方案。

4

1 回答 1

0

需要添加 asyncHttpClent jar 来解决这个问题。

于 2013-09-10T11:45:06.020 回答