Я пытаюсь отправить формат JSON со своего сервера на клиентский android, но у меня нет получения JSON в клиентском android like so
my JSON send from server:
[{"id":"19","f_name":"arnold","l_name":"nim","c_meli":"52854547"}]
в студии android java Script Volley RQ
private void send_code_php(){
request = new StringRequest (Request.Method.POST,URL_Profile, new Response.Listener<String> () {
@Override
public void onResponse(String response) {
try {
JSONObject jsonObject = new JSONObject (response);
String name = jsonObject.optString ("l_name");
Toast.makeText (Main_menu.this, name, Toast.LENGTH_SHORT).show ();
} catch (Exception p) {
}
}
}, new Response.ErrorListener () {
@Override
public void onErrorResponse(VolleyError error) {
}
}) {
@Override
protected Map<String, String> getParams() throws AuthFailureError {
HashMap<String, String> hashMap1 = new HashMap<String, String> ();
hashMap1.put ("code_send", cod_meli);
return hashMap1;
}
};
requestQueue.add (request);
}
полужирный курсив
цитата полужирный курсив цитата полужирный курсив цитата полужирный курсив цитата полужирный курсив цитата