Android - (HTTP|Net|URL)
Table of Contents
About
Net, http supports on Android
Articles Related
HTTP
Android support/includes two HTTP clients
- HttpURLConnection (Droid Doc java/net/HttpURLConnection or Java doc java/net/HttpURLConnection)
- and the Apache HTTP Client (/org/apache/http/impl/client/DefaultHttpClient or AndroidHttpClient)
URI
See Resource - Uniform resource identifier ( URI )
Uri.Builder uriBuilder = Uri.parse("http://myServer/myPath?").buildUpon();
uriBuilder.appendQueryParameter("q", "valueForParaq");
URI uri = uriBuilder.build()
URL url = new URL(uri.toString());