I am using Volley Network Library in my application.
The Issue is that it is sending data more than once when network connection is slow.
And After I Google this issue, all i can find about this issue is below point:
connection.setChunkedStreamingMode(0);
But I am not able to edit my volley library Hurlkstack classes.
It says:
The jar of this class file belong to container android Private libraries which does not allow modification to source attachments on it entries.
What should i do can some one help me
i have the following code where should i modify
.
private void makeJsonObjectRequest() {
JsonObjectRequest jsonObjReq = new JsonObjectRequest(Method.POST,
"http://example.com/***.php", obj, new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
response.getString("success");
} catch (JSONException e) {
e.printStackTrace();
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
}
});
AppController.getInstance().addToRequestQueue(jsonObjReq);
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…