Volley error.ParseError响应返回

时间:2018-03-05 03:41:20

标签: php android json android-volley

非常简单的json被调用和解析,但无论我尝试什么,我得到以下

  

com.android.volley.ParseError:org.json.JSONException:Value $ items of   类型java.lang.String无法转换为JSONObject

以下json是在PHP脚本中创建的。当通过Volley请求调用时,脚本会加载json,操作几个字段,然后将其保存回文件。

json

$items=array (
  0 => 
  array (
    'first' => 'Tom',
    'last' => 'Sawyer',
    'email' => 'u@gmail.com',
    'phone' => '1112223344',
    'zip' => '11122',
    'status' => '3',
    ),
);
$unObiect->items = $items;
$json = json_encode($unObiect);
echo($json);

通过

创建和保存json
$data[]=array(
   'first'=>$temp[0]['first'],
   'last'=>$temp[0]['last'],
   'phone'=>$temp[0]['phone'],
   'email'=>$temp[0]['email'],
   'zip'=>$temp[0]['zip'],
 );
file_put_contents($filename,  '$items=', FILE_APPEND);
file_put_contents($filename,  var_export($data,true) . ';'."\n", FILE_APPEND);
file_put_contents($filename,  '$unObiect->items = $items;'."\n", FILE_APPEND);
file_put_contents($filename,  '$json = json_encode($unObiect);'."\n", FILE_APPEND);
file_put_contents($filename,  'echo($json);'."\n", FILE_APPEND);
file_put_contents($filename,  '?>', FILE_APPEND);

排球请求

JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(Request.Method.GET, dataurl, new Response.Listener <JSONObject>() {
    @Override
    public void onResponse(JSONObject response) {
        if (response != null) {
              try {

                userArray = response.getJSONArray("items");
                for (int i = 0; i < userArray.length(); i++) {
                    JSONObject tempObj = userArray.getJSONObject(i);
                    UserData userData = new UserData();
                    userData.setFirst_name(tempObj.getString("first"));
                    userData.setLast_name(tempObj.getString("last"));
                    userData.setUser_phone(tempObj.getString("phone"));
                    userData.setEmail(tempObj.getString("email"));
                    userData.setTrialdays(tempObj.getString("day"));
                    userData.setStatus(tempObj.getString("status"));
                    userList.add(userData);
                   }
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
    }
}, new Response.ErrorListener() {
    @Override
    public void onErrorResponse(VolleyError error) {
   Toast.makeText(SplashActivity.this, "No Registration. . ." + error, Toast.LENGTH_SHORT).show();
        checkBox();
    }
});

我有一种感觉它与json在修改后保存回来的方式有关但我无法指出它主要是因为我正在使用第二个json文件,其中不同的信息以相同的方式创建第二次截击请求并且没有错误,负载完美。任何建议将不胜感激。

1 个答案:

答案 0 :(得分:1)

您需要在GET请求的标头中将content-type设置为application/json。创建请求时覆盖getHeaders函数。这是一个java示例。

JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(url, jsonBody,
    new Response.Listener<JSONObject>() {
        @Override
        public void onResponse(JSONObject response) {
            Log.d("TAG", response.toString());
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            Log.e("TAG", error.getMessage(), error);
        }
    }){

    @Override 
    public Map<String, String> getHeaders() throws AuthFailureError { 
        Map<String, String> params = new HashMap<String, String>();                
        params.put("Content-Type", "application/json");
        return params; 
    } 
};