Back to project page FrameLite.
The source code is released under:
GNU General Public License
If you think the Android project FrameLite listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.miku.framelite.api.webservice; //from w w w . j ava 2s.com import org.json.JSONObject; import com.miku.framelite.utils.Log; public abstract class WebServiceJsonRequest<T> extends AbstractWebServiceRequest<T, JSONObject> { private static final String TAG = WebServiceJsonRequest.class .getSimpleName(); @Override protected JSONObject handlerRawResponse(Object rawResponse) throws Exception { Log.e(TAG,"A"+rawResponse.toString()); return new JSONObject(rawResponse.toString()); } }