3

使用这种方法https://code.google.com/p/android-query/wiki/AsyncAPI ,我制作了这段代码来从api获取json数据,但是得到了,为什么?null

这段代码有问题还是方法有问题?

// 获取代码

public static void fetchCodeData(Context context2) {
    AQuery aQuery = new AQuery(context2);
    if(CheckInternetConnection.isConnectingToInternet()) {
        aQuery.ajax(url, null, JSONObject.class, getGrandCodeCallback());

    }
}

private static AjaxCallback<JSONObject> getGrandCodeCallback() {
    return new AjaxCallback<JSONObject>() {

        private String accessCode;

        @Override
        public void callback(String url, JSONObject object, AjaxStatus status) {
            // get data here
Log.e("Object", "object=" + object.toString());
            if (object != null) {
                try {
                    accessCode = object.getJSONObject("data").getString("code");
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }
        }
    }.header("Content-Type", "application/json; charset=utf-8")
    .header(Client_ID, Client_ID)
    .header(Client_SECRET, Client_SECRET);
}

调用 java 类活动:

fetchCodeData(getApplicationContext());

Log.e("getCallback",
            "AllOverApplicationVariable.accessCode==="
                + AllOverApplicationVariable.accessCode);

输出看起来像这样,在方法调用后它返回 null 但再次调用方法并获取 json 值?我不知道 ?为什么这个 ?

06-16 17:58:29.196: E/getCallback(12435): AllOverApplicationVariable.accessCode===null

06-16 17:58:30.202: E/Object(12435): object={"data":{"state":"","scope":"","expires":"2015-06-17 17: 58:30","code":"69e11cfb3243244da5dc6b0aac1515569c06d2d2","re​​sponse_type":"code","client_id":"1","re​​direct_uri":"http://localhost/eads"}}

AQuery 支持多部分发布,例如将图像上传到服务。只需执行常规 POST 并放入字节数组 Inputstream 您能否指出我的错误,我做错了什么。

4

2 回答 2

1

使用 Aquery 从服务器获取数据很简单。如果您使用标头和参数,请执行以下操作:

确保清单中包含以下权限。

  <uses-permission android:name="android.permission.INTERNET" /> 
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

和你必须实施的代码,

AQuery aQuery = new AQuery(mcontext);
    Map<String, Object> params = null;
    JSONObject mainJson = new JSONObject();
    try {
    // this is paramters
        mainJson.put("username", "jack");
        mainJson.put("pwd", "jack");
        StringEntity sEntity = new StringEntity(mainJson.toString(), HTTP.UTF_8);
        params = new HashMap<String, Object>();
        params.put(AQuery.POST_ENTITY, sEntity);
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    } catch (JSONException e) {
        e.printStackTrace();
    }

    if (CheckInternetConnection.isConnectingToInternet()) {
        aQuery.ajax(Url.urlUserHistoryAdList, params, JSONObject.class, new AjaxCallback<JSONObject>() {
        @Override
        public void callback(String url, JSONObject json, AjaxStatus status) {
            if (json != null) {
            String jsonString=json.toString();
            // Do whatever want in your fetched json from server
            } else {
            // json not getting properly, json data null
            }

        }
        }.header("Content-Type", "application/json; charset=utf-8").header(token, "123456789"));

所以请试试这个,可能工作得很好。有关 Aquery 的更多详细信息,请参阅完整文档:https ://code.google.com/p/android-query/wiki/AsyncAPI

于 2015-06-29T06:49:27.447 回答
0

@BB:你的最终代码应该是,

public static void fetchCodeData(Context context2) {
    AQuery aQuery = new AQuery(context2);
    if(CheckInternetConnection.isConnectingToInternet()) {
        aQuery.ajax(url, AllOverApplicationVariable.accessCode, getGrandCodeCallback());
    }
}

也许这会起作用。

于 2015-06-20T09:19:17.927 回答