Created
November 25, 2015 09:44
-
-
Save myamamic/7e23992f9f0fcb213eb3 to your computer and use it in GitHub Desktop.
[android] Gson用クラス
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
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.toolbox.HttpHeaderParser; | |
import com.google.gson.Gson; | |
import com.google.gson.JsonSyntaxException; | |
import java.io.UnsupportedEncodingException; | |
import java.util.Map; | |
public class GsonRequest<T> extends Request<T> { | |
private final Gson gson = new Gson(); | |
private final Class<T> clazz; | |
private final Map<String, String> params; | |
private final Response.Listener<T> listener; | |
/** | |
* Make a GET or 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 params Map of request body | |
*/ | |
public GsonRequest(int method, String url, Class<T> clazz, | |
Map<String, String> params, Response.Listener<T> listener, | |
Response.ErrorListener errorListener) { | |
super(method, url, errorListener); | |
this.clazz = clazz; | |
this.params = params; | |
this.listener = listener; | |
} | |
@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