通过AsyncTask将JSON对象传递给Web服务

时间:2016-10-26 00:43:55

标签: android json web-services android-asynctask

我正在尝试通过JSONAsynctask对象传递给网络服务。我在collectStatistics中调用MainActivity方法。此方法收集移动设备的一些统计信息,并将它们组合在一个JSON对象中。然后将JSON对象传递给Asynctask

    JSONObject jsonProperties = new JSONObject();
    try {
        jsonProperties.put("_device" , _device);
        jsonProperties.put("_model", _model);
        jsonProperties.put("_product", _product);

    } catch (JSONException e) {
        e.printStackTrace();
    }
    if (jsonProperties.length() > 0)
    {
        //call to async class
        //String.valueOf(jsonProperties)
        //new SendJsonProperties().executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, jsonProperties); //instead of execute
        Toast.makeText(context,jsonProperties.toString(),Toast.LENGTH_LONG).show();
        if( Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB ) {
            new SendJsonProperties().executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, jsonProperties);
            Log.i("msg","calling asynctask");
        } else {
            new SendJsonProperties().execute(jsonProperties);
            Log.i("msg","NOT calling asynctask");
        }
    }

Asynctask接收JSON参数

class SendJsonProperties extends AsyncTask <JSONObject,String,String>

我在doInBackground中调用了一个Web服务调用方法

  protected String doInBackground(JSONObject... params)
{
    //(...) elippsis make the input array
    Log.i("msg", "do in bkgnd");
    WebServicesCaller webServicesCaller = new WebServicesCaller();
    result = webServicesCaller.storeStatistics(params[0]);
    return null;
}

但我收到此错误

java.lang.RuntimeException: Cannot serialize: {"_product":"ms013gxx","_model":"SM-G7102","_device":"ms013g"}

我无法弄清楚序列化中的问题。任何帮助都感激不尽。提前谢谢。

2 个答案:

答案 0 :(得分:0)

您必须为您的JSONObject参数制作Model POJO类。 使用此链接根据JSON REsponse创建POJO类。

reorder a narrow store with a wider load that fully contains it

答案 1 :(得分:0)

我试图将一个JSON对象发送到一个带有字符串参数

的web方法

public string storeStatistics(string jsonObj)

所以我改变了

jsonProp.setType(JSONObject.class);
request.addProperty(jsonProp, obj);

jsonProp.type = PropertyInfo.STRING_CLASS;
request.addProperty(jsonProp, obj.toString());