Recipe 6.2 Connecting to Servers Using HTTP POST

Android Versions
Level 1 and above
Permissions
android.permission.INTERNET
Source Code to Download at Wrox.com
HTTP.zip

The previous recipe showed how to connect to a server using HTTP GET, whereby the data to pass to the server is appended to the end of the URL. Instead of using HTTP GET, you can also use the alternative HTTP POST method. With HTTP GET, all the data passed to the server is contained in the URL, and it is typically constrained in size (typically less than 2,000 characters). With HTTP POST you can send the data separately to the server, essentially bypassing the data size limit. This recipe demonstrates how to connect to a web server using HTTP POST.

Solution

To connect to a server using HTTP POST, use the HttpClient, HttpPost, and HttpResponse classes, as shown here:

 //---Connects using HTTP POST--- public InputStream OpenHttpPOSTConnection(String url) { InputStream inputStream = null; try { HttpClient httpclient = new DefaultHttpClient(); HttpPost httpPost = new HttpPost(url); //---set the headers--- httpPost.addHeader("Host", "www.webservicex.net"); httpPost.addHeader("Content-Type", "application/x-www-form-urlencoded"); //---the key/value pairs to post to the server--- List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2); nameValuePairs.add(new BasicNameValuePair("FromCurrency", "USD")); nameValuePairs.add(new BasicNameValuePair("ToCurrency", "SGD")); httpPost.setEntity(new ...

Get Android Application Development Cookbook: 93 Recipes for Building Winning Apps now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.