Lightweight Java HTTP-Client for calling JSON REST-Services (especially made for Android).
If you have to call a RESTful Webservice from Java, especially if you are on Android, you have some options:
- Use
DefaultHttpClientorAndroidHttpClient. It is already deployed on Android and it's easy to use. But wait a moment - Google doesn't recommend using it, only on very old Android versions. - Use
HttpURLConnection. This is what Google recommends for newer Android versions (>= Gingerbread). It is part of JDK, but it's cumbersome to use (if not to say a nightmare). - Add
Unirest,Restletor some other "all-you-can-eat", universal, multi-part, File-upload and all-cases supporting library which adds some hundred KB of jars to your APK.
DavidWebb is a small wrapper around HttpURLConnection. It supports most HTTP communication cases when you talk to REST services and your data is JSON. It is very lightweight (~16 KB jar) and super-easy to use.
- Supports GET, POST, PUT, DELETE
- add HTTP headers (per request, per client or globally)
- convert params to
x-www-form-urlencodedbody or URI search params - fluent API
- org.json support (JSONObject, JSONArray) as payload in both directions (up/down)
- wraps all Exceptions in a WebbException (a RuntimeException)
- automatically sets many boiler-plate HTTP headers (like 'Accept', 'Content-Type', 'Content-Length')
- GZip-compression for uploads (POST/PUT)
- Un-compress gzip/deflate downloads
- supports HTTPS and enables relaxing SSL-handshake (self-signed certificates, hostname verification)
- pass-through to "real" connection for special cases
Following features are not supported and there are no plans to realize them:
- Cookie management (read
Set-Cookieheader from response and setCookieheader for request) - Comfortable Basic Authentication (it's not hard to implement it above of DavidWebb, see below)
- Multi-Part upload
- Mixing URL-parameters and x-www-form-urlencoded POST bodies.
Workaround: build the URI with the help ofWebbUtils.queryStringand useRequest.param()for the form-fields.
Where not stated, the workaround is to use another library or implement it above of DavidWebb. If you think your implementation might be useful for others and it's not blowing up the size of the JAR, please create a pull request. (Adding heavy dependencies is not an option.)
Below you can see some examples of how to use DavidWebb. And here you can find the API Documentation.
This is some code from a SyncAdapter of an Android App:
// create the client (one-time, can be used from different threads)
Webb webb = Webb.create();
webb.setBaseUri(SyncPreferences.REST_ENDPOINT);
webb.setDefaultHeader(Webb.HDR_USER_AGENT, Const.UA);
// later we authenticate
Response<JSONObject> response = webb
.post("/session")
.param("authentication", createAuthentication(syncPreferences))
.param("deviceId", syncPrefs.getDeviceId())
.ensureSuccess()
.asJsonObject();
JSONObject apiResult = response.getBody();
AccessToken accessToken = new AccessToken();
accessToken.token = apiResult.getString("token");
accessToken.validUntil = apiResult.getLong("validUntil");
webb.setDefaultHeader(HDR_ACCESS_TOKEN, accessToken.token);
JSONObject sync = webb.post("/startSync")
.param("lastSync", syncPrefs.getLastSync())
.ensureSuccess()
.asJsonObject()
.getBody();
// ... etc. etc.
// releaseAccessToken
webb.delete("/session").asVoid();
accessToken = null;Using Google Directions API:
Webb webb = Webb.create();
JSONObject result = webb
.get("http://maps.googleapis.com/maps/api/directions/json")
.param("origin", new GeoPoint(47.8227, 12.096933))
.param("destination", new GeoPoint(47.8633, 12.215533))
.param("mode", "walking")
.param("sensor", "true")
.ensureSuccess()
.asJsonObject()
.getBody();
JSONArray routes = result.getJSONArray("routes");You have to do Basic Authentication?
This authorization method uses a Base64 encoded string. Unfortunately Java SE doesn't provide a Base64 encoder. Because DavidWebb wants to be light and Android already provides a Base64 support class, it's left to you to insert a few lines of code. As you can see, it's not hard work. Use one of the methods to set a header and set Authorization header by yourself:
byte[] credentials = (username + ":" + password).getBytes("UTF-8");
String auth = "Basic " + Base64.encodeToString(credentials, 0);
Webb webb = Webb.create();
webb.setDefaultHeader(Webb.HDR_AUTHORIZATION, auth);If you want to see more examples, just have a look at the JUnit TestCase (src/test/java/...).
You should add this if you build for legacy Android devices:
if (Integer.parseInt(Build.VERSION.SDK) < Build.VERSION_CODES.FROYO) {
System.setProperty("http.keepAlive", "false");
}ATTENTION: Version 1.0.0 has a nasty bug for Android devices < API 19! Don't use it - it is fixed together with other bugs in version 1.1.0-SNAPSHOT. Release 1.1.0 coming soon!
<dependency>
<groupId>com.goebl</groupId>
<artifactId>david-webb</artifactId>
<version>1.0.0</version>
</dependency>Gradle
'com.goebl:david-webb:1.0.0'
Not using Maven/Gradle? - Then you can download the plain JAR from following links directly:
If DavidWebb is too lightweight and you're missing features, you can have a look at:
- RESTDroid
- RoboSpice
- android-rest-client
- unirest
- Restlet Framework
- Volley and Volley Example
- DataDroid - an Android library for Data Management
- More Alternatives (on RoboSpice)
- (tell me if I missed your award-winning REST-client library!)
David Webb is the real name of Jason Bourne. So JSON and Web, did you get it? OK, might be silly, but Bourne 1-3 are my favorite films and so at least I can remember the name.
From Wikipedia:
Jason Bourne is a fictional character and the protagonist of a series of novels by Robert Ludlum and subsequent film adaptations
MIT License, see LICENSE file
The Unit-Tests do not mock any network-libraries, but depend on a small Express-application running.
Run following commands before you start the JUnit-tests or skip the tests in Maven build with command line
option -DskipTests
cd src/test/api-test-server
npm install
node .
- Class: 100%
- Method: 81%
- Line: 86%
- decorator/interceptor beforeSend - provide hooks to manipulate request before send
- decorator/interceptor afterReceive - provide hooks to manipulate raw response after receiving it
Create an issue if you want to have one of those ideas implemented.
- Test against httpbin.org