Created
July 4, 2013 05:28
-
-
Save myaaaaa-chan/5925106 to your computer and use it in GitHub Desktop.
Volley adapter for JSON requests with POST method that will be parsed into Java objects by Gson @see https://gist.github.com/ficusk/5474673
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jp.i_dig.community.util; | |
import com.google.gson.Gson; | |
import com.google.gson.JsonSyntaxException; | |
import com.android.volley.AuthFailureError; | |
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 java.io.UnsupportedEncodingException; | |
import java.util.Map; | |
/** | |
* Volley adapter for JSON requests with POST method that will be parsed into Java objects by Gson. | |
*/ | |
public class GsonRequest<T> extends Request<T> { | |
private final Gson gson = new Gson(); | |
private final Class<T> clazz; | |
private final Map<String, String> headers; | |
private final Map<String, String> params; | |
private final Listener<T> listener; | |
/** | |
* Make a GET request and return a parsed object from JSON. | |
* | |
* @param url URL of the request to make | |
* @param clazz Relevant class object, for Gson's reflection | |
* @param headers Map of request headers | |
*/ | |
public GsonRequest(String url, Class<T> clazz, Map<String, String> headers, | |
Listener<T> listener, ErrorListener errorListener) { | |
super(Method.GET, url, errorListener); | |
this.clazz = clazz; | |
this.headers = headers; | |
this.listener = listener; | |
this.params = null; | |
} | |
/** | |
* Make a POST request and return a parsed object from JSON. | |
* | |
* @param url URL of the request to make | |
* @param clazz Relevant class object, for Gson's reflection | |
* @param headers Map of request headers | |
*/ | |
public GsonRequest(int method, String url, Class<T> clazz, Map<String, String> params, | |
Listener<T> listener, ErrorListener errorListener) { | |
super(method, url, errorListener); | |
this.clazz = clazz; | |
this.params = params; | |
this.listener = listener; | |
this.headers = null; | |
} | |
@Override | |
public Map<String, String> getHeaders() throws AuthFailureError { | |
return headers != null ? headers : super.getHeaders(); | |
} | |
@Override | |
protected Map<String, String> getParams() throws AuthFailureError { | |
return params; | |
} | |
@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)); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm trying to modify the gson.fromJson(...) like this by using Type token
Type listType = new TypeToken<List>(){}.getType(); // compiler error
return gson.fromJson(jsonString, listType);
but I'm failed any help??