| 接口 | 说明 |
|---|---|
| JsonValueInterface |
This interface is used to encapsulate JSON values that are handled entirely
by the app.
|
| ResponseHandlerInterface |
Interface to standardize implementations
|
| 类 | 说明 |
|---|---|
| AsyncHttpClient |
The AsyncHttpClient can be used to make asynchronous GET, POST, PUT and DELETE HTTP requests in
your Android applications.
|
| AsyncHttpRequest |
Internal class, representing the HttpRequest, done in asynchronous manner
|
| AsyncHttpResponseHandler |
Used to intercept and handle the responses from requests made using
AsyncHttpClient. |
| Base64 |
Utilities for encoding and decoding the Base64 representation of binary data.
|
| Base64OutputStream | |
| BaseJsonHttpResponseHandler<JSON_TYPE> |
Class meant to be used with custom JSON parser (such as GSON or Jackson JSON)
BaseJsonHttpResponseHandler.parseResponse(String, boolean) should be overriden and must return type of generic param
class, response will be then handled to implementation of abstract methods {onSuccess(int,
Header[], String, Object)} or {onFailure(int, Header[],
Throwable, String, Object)}, depending of response HTTP status line (result http code) |
| BinaryHttpResponseHandler |
Used to intercept and handle the responses from requests made using
AsyncHttpClient. |
| DataAsyncHttpResponseHandler | |
| FileAsyncHttpResponseHandler | |
| HttpDelete |
The current Android (API level 21) bundled version of the Apache Http Client does not implement
a HttpEntityEnclosingRequestBase type of HTTP DELETE method.
|
| HttpGet |
The current Android (API level 21) bundled version of the Apache Http Client does not implement
a HttpEntityEnclosingRequestBase type of HTTP GET method.
|
| HttpPatch |
The current Android (API level 21) bundled version of the Apache Http Client does not implement
the HTTP PATCH method.
|
| JsonHttpResponseHandler |
Used to intercept and handle the responses from requests made using
AsyncHttpClient, with
automatic parsing into a JSONObject or JSONArray. |
| JsonStreamerEntity |
HTTP entity to upload JSON data using streams.
|
| MySSLSocketFactory |
This file is introduced to fix HTTPS Post bug on API < ICS see
http://code.google.com/p/android/issues/detail?
|
| PersistentCookieStore |
A persistent cookie store which implements the Apache HttpClient { CookieStore} interface.
|
| PreemtiveAuthorizationHttpRequestInterceptor | |
| RangeFileAsyncHttpResponseHandler | |
| RequestHandle |
A Handle to an AsyncRequest which can be used to cancel a running request.
|
| RequestParams |
A collection of string request parameters or files to send along with requests made from an
AsyncHttpClient instance. |
| RequestParams.FileWrapper | |
| RequestParams.StreamWrapper | |
| SaxAsyncHttpResponseHandler<T extends org.xml.sax.helpers.DefaultHandler> |
Provides interface to deserialize SAX responses, using AsyncHttpResponseHandler.
|
| SerializableCookie |
A wrapper class around { Cookie} and/or { BasicClientCookie} designed for use in {
PersistentCookieStore}.
|
| SyncHttpClient |
Processes http requests in synchronous mode, so your caller thread will be blocked on each
request
|
| TextHttpResponseHandler |
Used to intercept and handle the responses from requests made using { AsyncHttpClient}.
|
| 异常错误 | 说明 |
|---|---|
| Base64DataException |