I would recommend sticking with the GSON library to parse JSON. Here's what a Volley request with built-in JSON processing looks like:
import java.io.UnsupportedEncodingException; import com.android.volley.NetworkResponse; import com.android.volley.ParseError; import com.android.volley.Request; import com.android.volley.Response; import com.android.volley.Response.ErrorListener; import com.android.volley.Response.Listener; import com.android.volley.toolbox.HttpHeaderParser; import com.google.gson.Gson; import com.google.gson.JsonSyntaxException; public class GsonRequest<T> extends Request<T> { protected final Gson gson; protected final Class<T> clazz; private final Listener<T> listener; public GsonRequest(String url, Class<T> clazz, Listener<T> listener, ErrorListener errorListener) { super(Method.GET, url, errorListener); this.clazz = clazz; this.listener = listener; this.gson = new Gson(); } @Override protected void deliverResponse(T response) { listener.onResponse(response); } @Override protected Response<T> parseNetworkResponse(NetworkResponse response) { try { String json = new String( response.data, HttpHeaderParser.parseCharset(response.headers)); return Response.success( gson.fromJson(json, clazz), HttpHeaderParser.parseCacheHeaders(response)); } catch (UnsupportedEncodingException e) { return Response.error(new ParseError(e)); } catch (JsonSyntaxException e) { return Response.error(new ParseError(e)); } } }
Suppose you have a server method located at http://example.com/api/persons/ that returns an array of JSON Person; A person looks like this:
public class Person { String firstName; String lastName; }
We can call the above method as follows:
GsonRequest<Person[]> getPersons = new GsonRequest<Person[]>("http://example.com/api/persons/", Person[].class, new Listener<Person[]>() { @Override public void onResponse(Person[] response) { List<Person> persons = Arrays.asList(response);
And finally, in the response listener, we get an array of Person, which can be converted to a list and sent to the ListView adapter.
Alexey Dmitriev
source share