我已经看到其他人遇到过这个问题,但没有一个帖子能够帮助我。我试图将Volley用于我的REST调用库,当我尝试使用带有JSON对象的Put调用作为参数时,我得到error with: org.json.JSONException: End of input at character 0 of
。
以下是代码:
protected void updateClientDeviceStatus(Activity activity, final int status) {
JSONObject jsonParams = new JSONObject();
try {
jsonParams.put("statusId", String.valueOf(status));
} catch (JSONException e1) {
e1.printStackTrace();
}
Log.i(LOG_TAG, "json: " + jsonParams.toString());
String url = Constants.API_URL + "client/device/" + getDeviceId();
// Request a response from the provided URL.
JsonObjectRequest request = new JsonObjectRequest
(Request.Method.PUT, url, jsonParams, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
Log.i(LOG_TAG, "updated client status");
Log.i(LOG_TAG, "response: " + response.toString());
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Log.i(LOG_TAG, "error with: " + error.getMessage());
if (error.networkResponse != null)
Log.i(LOG_TAG, "status code: " + error.networkResponse.statusCode);
}
}) {
@Override
public Map<String, String> getHeaders() throws AuthFailureError {
Map<String, String> params = new HashMap<String, String>();
params.put("User-Agent", getUserAgent());
params.put("X-BC-API", getKey());
return params;
}
@Override
public String getBodyContentType() {
return "application/json";
}
};
request.setRetryPolicy(new DefaultRetryPolicy(20000, 3, DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
MySingleton.getInstance(activity).addToRequestQueue(request);
}
}
jsonParams日志显示:
json: {"statusId":"1"}
我还缺少其他设置吗?看来该请求无法解析JSON对象。我甚至尝试创建一个HashMap,然后使用它创建一个JSON对象,但我仍然得到相同的结果。
答案 0 :(得分:38)
我也遇到过这个问题。
这不一定是因为服务器端存在问题 - 它只是意味着JsonObjectRequest
的响应为空。
很可能服务器应该向您发送内容,而其响应为空的事实是一个错误。但是,如果这是服务器的行为方式,那么要解决此问题,您需要更改JsonObjectRequest解析其响应的方式,这意味着创建JsonObjectRequest
的子类,并覆盖parseNetworkResponse
以下示例。
@Override
protected Response<JSONObject> parseNetworkResponse(NetworkResponse response) {
try {
String jsonString = new String(response.data,
HttpHeaderParser.parseCharset(response.headers, PROTOCOL_CHARSET));
JSONObject result = null;
if (jsonString != null && jsonString.length() > 0)
result = new JSONObject(jsonString);
return Response.success(result,
HttpHeaderParser.parseCacheHeaders(response));
} catch (UnsupportedEncodingException e) {
return Response.error(new ParseError(e));
} catch (JSONException je) {
return Response.error(new ParseError(je));
}
}
请记住,使用此修复程序,并且在服务器响应为空的情况下,请求回调将返回空引用以代替JSONObject
。
答案 1 :(得分:2)
可能没有意义,但除了添加内容类型标题
之外别无效mHeaders.put("Content-Type", "application/json");
答案 2 :(得分:0)
在我的情况下,这只是我发送的请求(POST)不正确。我交叉检查了我的字段,并注意到有一个不匹配,服务器期望得到错误 - &gt;输入结束在字符0 ...
答案 3 :(得分:0)
我遇到了同样的问题,我通过创建一个自定义JsonObjectRequest来解决此问题,该自定义JsonObjectRequest可以捕获空或空响应:
public class CustomJsonObjectRequest extends JsonObjectRequest {
public CustomJsonObjectRequest(int method, String url, JSONObject jsonRequest, Response.Listener<JSONObject> listener, Response.ErrorListener errorListener) {
super(method, url, jsonRequest, listener, errorListener);
}
public CustomJsonObjectRequest(String url, JSONObject jsonRequest, Response.Listener<JSONObject> listener, Response.ErrorListener errorListener) {
super(url, jsonRequest, listener, errorListener);
}
@Override
protected Response<JSONObject> parseNetworkResponse(NetworkResponse response) {
try {
String jsonString = new String(response.data,
HttpHeaderParser.parseCharset(response.headers));
JSONObject result = null;
if (jsonString != null && jsonString.length() > 0)
result = new JSONObject(jsonString);
return Response.success(result,
HttpHeaderParser.parseCacheHeaders(response));
} catch (UnsupportedEncodingException e) {
return Response.error(new ParseError(e));
} catch (JSONException je) {
return Response.error(new ParseError(je));
}
}
然后只需将默认JsonObjectRequest替换为此一个!
答案 4 :(得分:0)
您需要检查服务器响应是否为空。可能是空字符串“”。
if (response.success()) {
if (response.getData() == null) {
return null;
} else if (response.getData().length() <= 0){
return null;
}
// Do Processing
try {