All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.loopj.android.http.TextHttpResponseHandler Maven / Gradle / Ivy

There is a newer version: 1.4.11
Show newest version
/*
    Android Asynchronous Http Client
    Copyright (c) 2011 James Smith 
    http://loopj.com

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

package com.loopj.android.http;

import android.util.Log;

import org.apache.http.Header;

import java.io.UnsupportedEncodingException;

/**
 * Used to intercept and handle the responses from requests made using {@link AsyncHttpClient}. The
 * {@link #onSuccess(int, org.apache.http.Header[], String)} method is designed to be anonymously
 * overridden with your own response handling code. 

 

Additionally, you can override the * {@link #onFailure(int, org.apache.http.Header[], String, Throwable)}, {@link #onStart()}, and * {@link #onFinish()} methods as required.

 

For example:

 

*
 * AsyncHttpClient client = new AsyncHttpClient();
 * client.get("http://www.google.com", new TextHttpResponseHandler() {
 *     @Override
 *     public void onStart() {
 *         // Initiated the request
 *     }
 *
 *     @Override
 *     public void onSuccess(String responseBody) {
 *         // Successfully got a response
 *     }
 *
 *     @Override
 *     public void onFailure(String responseBody, Throwable e) {
 *         // Response failed :(
 *     }
 *
 *     @Override
 *     public void onFinish() {
 *         // Completed the request (either success or failure)
 *     }
 * });
 * 
*/ public abstract class TextHttpResponseHandler extends AsyncHttpResponseHandler { private static final String LOG_TAG = "TextHttpResponseHandler"; /** * Creates new instance with default UTF-8 encoding */ public TextHttpResponseHandler() { this(DEFAULT_CHARSET); } /** * Creates new instance with given string encoding * * @param encoding String encoding, see {@link #setCharset(String)} */ public TextHttpResponseHandler(String encoding) { super(); setCharset(encoding); } /** * Called when request fails * * @param statusCode http response status line * @param headers response headers if any * @param responseString string response of given charset * @param throwable throwable returned when processing request */ public abstract void onFailure(int statusCode, Header[] headers, String responseString, Throwable throwable); /** * Called when request succeeds * * @param statusCode http response status line * @param headers response headers if any * @param responseString string response of given charset */ public abstract void onSuccess(int statusCode, Header[] headers, String responseString); @Override public void onSuccess(int statusCode, Header[] headers, byte[] responseBytes) { onSuccess(statusCode, headers, getResponseString(responseBytes, getCharset())); } @Override public void onFailure(int statusCode, Header[] headers, byte[] responseBytes, Throwable throwable) { onFailure(statusCode, headers, getResponseString(responseBytes, getCharset()), throwable); } /** * Attempts to encode response bytes as string of set encoding * * @param charset charset to create string with * @param stringBytes response bytes * @return String of set encoding or null */ public static String getResponseString(byte[] stringBytes, String charset) { try { String toReturn = (stringBytes == null) ? null : new String(stringBytes, charset); if (toReturn != null && toReturn.startsWith(UTF8_BOM)) { return toReturn.substring(1); } return toReturn; } catch (UnsupportedEncodingException e) { Log.e(LOG_TAG, "Encoding response into string failed", e); return null; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy