Preparation
- Download Apache HTTPClient 4.3 jars in here
- Add the jars into your classpath project
Codes (deprecated)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.hari.mynotes.httpclientexample; | |
import java.io.File; | |
import java.io.InputStream; | |
import java.util.ArrayList; | |
import java.util.List; | |
import org.apache.http.HttpEntity; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.NameValuePair; | |
import org.apache.http.client.CookieStore; | |
import org.apache.http.client.entity.UrlEncodedFormEntity; | |
import org.apache.http.client.methods.HttpGet; | |
import org.apache.http.client.methods.HttpPost; | |
import org.apache.http.client.protocol.ClientContext; | |
import org.apache.http.entity.mime.MultipartEntity; | |
import org.apache.http.entity.mime.content.FileBody; | |
import org.apache.http.entity.mime.content.StringBody; | |
import org.apache.http.impl.client.BasicCookieStore; | |
import org.apache.http.impl.client.DefaultHttpClient; | |
import org.apache.http.message.BasicNameValuePair; | |
import org.apache.http.protocol.BasicHttpContext; | |
import org.apache.http.protocol.HttpContext; | |
import org.apache.http.util.EntityUtils; | |
import com.hari.mynotes.httpclientexample.MyRedirectStrategy; | |
public class HTTPClientExample { | |
private static CookieStore cookieStore; | |
private static final MyRedirectStrategy redirectStrategy = new MyRedirectStrategy(); | |
private static final String BASE_URL = "http://example.com"; | |
private static final String USER_AGENT = "Mozilla/5.0"; | |
// Login method | |
public static boolean login(String user, String password) { | |
// Instantiate HttpClient object | |
DefaultHttpClient client = new DefaultHttpClient(); | |
try { | |
// Handle if request got specific redirect response | |
client.setRedirectStrategy(redirectStrategy); | |
// Instantiate a cookies | |
cookieStore = new BasicCookieStore(); | |
// Add a cookies into http context | |
HttpContext context = new BasicHttpContext(); | |
context.setAttribute(ClientContext.COOKIE_STORE, cookieStore); | |
// Instantiate POST request | |
HttpPost post = new HttpPost(BASE_URL); | |
// Add user agent into the POST header | |
post.setHeader("User-Agent", USER_AGENT); | |
// Add parameters into the POST request | |
// Note that we have to know the name of the parameters that we want to send | |
List<NameValuePair> params = new ArrayList<NameValuePair>(); | |
params.add(new BasicNameValuePair("action", "loginAction")); | |
params.add(new BasicNameValuePair("nameinput", user)); | |
params.add(new BasicNameValuePair("passinput", password)); | |
post.setEntity(new UrlEncodedFormEntity(params)); | |
// Execute the request and get the response | |
HttpResponse response = client.execute(post, context); | |
// Get the response entity | |
HttpEntity resEntity = response.getEntity(); | |
// Check response status | |
// Do something if it's OK | |
int responseStatus = response.getStatusLine().getStatusCode(); | |
if (responseStatus==200) { | |
String responseLocation = response.getLastHeader("location").getValue(); | |
InputStream is = resEntity.getContent(); | |
// Write codes here to check whether the response is as expected | |
// We can check via the location or the content | |
return true; | |
} | |
EntityUtils.consume(resEntity); | |
} catch(Exception e) { | |
e.printStackTrace(); | |
} finally { | |
try { | |
// Close the connection | |
client.getConnectionManager().shutdown(); | |
} catch (Exception e ){e.printStackTrace();} | |
} | |
return false; | |
} | |
// Browse a secure page method (need cookies from the success login) | |
public static void browse(String pageUrl) { | |
// Instantiate HttpClient object | |
DefaultHttpClient client = new DefaultHttpClient(); | |
try { | |
// Add the cookies into request | |
client.setCookieStore(cookieStore); | |
// Add the cookies into http context | |
HttpContext context = new BasicHttpContext(); | |
context.setAttribute(ClientContext.COOKIE_STORE, cookieStore); | |
// Instantiate GET request | |
HttpGet request = new HttpGet(pageUrl); | |
// Add user agent into the GET header | |
request.setHeader("User-Agent", USER_AGENT); | |
// Execute the request and get the response | |
HttpResponse response = client.execute(request, context); | |
// Get the response entity | |
HttpEntity resEntity = response.getEntity(); | |
// Check response status | |
// Do something if it's OK | |
int responseStatus = response.getStatusLine().getStatusCode(); | |
if (responseStatus==200) { | |
// bla.. bla.. bla.. | |
} | |
} catch(Exception e) { | |
e.printStackTrace(); | |
} finally { | |
try { | |
// Close the connection | |
client.getConnectionManager().shutdown(); | |
} catch (Exception e ){e.printStackTrace();} | |
} | |
} | |
// Upload file method | |
public static void upload(File file) { | |
// Instantiate HttpClient object | |
DefaultHttpClient client = new DefaultHttpClient(); | |
try { | |
// Add the cookies into request | |
client.setCookieStore(cookieStore); | |
// Add the cookies into http context | |
HttpContext context = new BasicHttpContext(); | |
context.setAttribute(ClientContext.COOKIE_STORE, cookieStore); | |
// Instantiate POST request | |
HttpPost post = new HttpPost(BASE_URL); | |
// Add user agent into the POST header | |
post.setHeader("User-Agent", USER_AGENT); | |
// Add parameters into the POST request | |
MultipartEntity entity = new MultipartEntity(); | |
entity.addPart("action", new StringBody("uploadAction")) ; | |
// Prepare the File | |
// Note that we have to know the name attribute of the input file | |
FileBody fileBody = new FileBody(file, "application/vnd.ms-excel") ; | |
entity.addPart("excelFile", fileBody) ; | |
// Set the entity into the POST request | |
post.setEntity(entity); | |
// Execute the request and get the response | |
HttpResponse response = client.execute(post, context); | |
// Get the response entity | |
HttpEntity resEntity = response.getEntity(); | |
// Check response status | |
// Do something if it's OK | |
int responseStatus = response.getStatusLine().getStatusCode(); | |
if (responseStatus==200) { | |
// bla.. bla.. bla.. | |
} | |
EntityUtils.consume(resEntity); | |
} catch(Exception e) { | |
e.printStackTrace(); | |
} finally { | |
try { | |
// Close the connection | |
client.getConnectionManager().shutdown(); | |
} catch (Exception e ){e.printStackTrace();} | |
} | |
} | |
} |
You will notice that we have some deprecated problems here. They are :
- DefaultHttpClient class
- ClientContext class
- MultipartEntity class
- StringBody(String) constructor
- FileBody(File,String) constructor
Somehow, after trial & errors I solved the problem.
Codes (new style)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.hari.mynotes.httpclientexample; | |
import java.io.File; | |
import java.io.InputStream; | |
import java.util.ArrayList; | |
import java.util.List; | |
import org.apache.http.HttpEntity; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.NameValuePair; | |
import org.apache.http.client.CookieStore; | |
import org.apache.http.client.HttpClient; | |
import org.apache.http.client.entity.UrlEncodedFormEntity; | |
import org.apache.http.client.methods.HttpGet; | |
import org.apache.http.client.methods.HttpPost; | |
import org.apache.http.client.utils.HttpClientUtils; | |
import org.apache.http.entity.ContentType; | |
import org.apache.http.entity.mime.MultipartEntityBuilder; | |
import org.apache.http.entity.mime.content.StringBody; | |
import org.apache.http.impl.client.BasicCookieStore; | |
import org.apache.http.impl.client.HttpClientBuilder; | |
import org.apache.http.message.BasicNameValuePair; | |
import org.apache.http.util.EntityUtils; | |
import com.hari.mynotes.httpclientexample.MyRedirectStrategy; | |
public class HTTPClientExampleNew { | |
private static CookieStore cookieStore; | |
private static final MyRedirectStrategy redirectStrategy = new MyRedirectStrategy(); | |
private static final String BASE_URL = "http://example.com"; | |
private static final String USER_AGENT = "Mozilla/5.0"; | |
// Login method | |
public static boolean login(String user, String password) { | |
// Instantiate a cookies | |
cookieStore = new BasicCookieStore(); | |
// Instantiate HttpClient object via HttpClientBuilder | |
// at the same time include the user agent, redirect strategy and cookies | |
HttpClientBuilder clientBuilder = HttpClientBuilder | |
.create() | |
.setUserAgent(USER_AGENT) | |
.setRedirectStrategy(redirectStrategy) | |
.setDefaultCookieStore(cookieStore); | |
HttpClient client = clientBuilder.build(); | |
try { | |
// Instantiate POST request | |
HttpPost post = new HttpPost(BASE_URL); | |
// Add parameters into the POST request | |
// Note that we have to know the name of the parameters that we want to send | |
// There are no deprecated codes in this NameValuePair parameter list | |
List<NameValuePair> params = new ArrayList<NameValuePair>(); | |
params.add(new BasicNameValuePair("action", "loginAction")); | |
params.add(new BasicNameValuePair("nameinput", user)); | |
params.add(new BasicNameValuePair("passinput", password)); | |
post.setEntity(new UrlEncodedFormEntity(params)); | |
// Execute the request and get the response | |
HttpResponse response = client.execute(post); | |
// Get the response entity | |
HttpEntity resEntity = response.getEntity(); | |
// Check response status | |
// Do something if it's OK | |
int responseStatus = response.getStatusLine().getStatusCode(); | |
if (responseStatus==200) { | |
String responseLocation = response.getLastHeader("location").getValue(); | |
InputStream is = resEntity.getContent(); | |
// Write codes here to check whether the response is as expected | |
// We can check via the location or the content | |
return true; | |
} | |
EntityUtils.consume(resEntity); | |
} catch(Exception e) { | |
e.printStackTrace(); | |
} finally { | |
// Close the connection. Note that we don't need to try-catch-ing an exception | |
HttpClientUtils.closeQuietly(client); | |
} | |
return false; | |
} | |
// Browse a secure page method (need cookies from the success login) | |
public static void browse(String pageUrl) { | |
// Instantiate HttpClient object via HttpClientBuilder | |
// at the same time include the user agent, and the cookies | |
HttpClientBuilder clientBuilder = HttpClientBuilder | |
.create() | |
.setUserAgent(USER_AGENT) | |
.setDefaultCookieStore(cookieStore); | |
HttpClient client = clientBuilder.build(); | |
try { | |
// Instantiate GET request | |
HttpGet request = new HttpGet(pageUrl); | |
// Execute the request and get the response | |
HttpResponse response = client.execute(request); | |
// Get the response entity | |
HttpEntity resEntity = response.getEntity(); | |
// Check response status | |
// Do something if it's OK | |
int responseStatus = response.getStatusLine().getStatusCode(); | |
if (responseStatus==200) { | |
// bla.. bla.. bla.. | |
} | |
} catch(Exception e) { | |
e.printStackTrace(); | |
} finally { | |
// Close the connection. No need try-catch | |
HttpClientUtils.closeQuietly(client); | |
} | |
} | |
// Upload file method | |
public static void upload(File file) { | |
// Instantiate HttpClient object via HttpClientBuilder | |
// at the same time include the user agent, and the cookies | |
HttpClientBuilder clientBuilder = HttpClientBuilder | |
.create() | |
.setUserAgent(USER_AGENT) | |
.setDefaultCookieStore(cookieStore); | |
HttpClient client = clientBuilder.build(); | |
try { | |
// Instantiate POST request | |
HttpPost post = new HttpPost(BASE_URL); | |
// Prepare the parameter and the file into a HttpEntity | |
HttpEntity entity = MultipartEntityBuilder.create() | |
.addPart("action", new StringBody("uploadAction", ContentType.TEXT_PLAIN)) | |
.addBinaryBody("excelFile", file, ContentType.create("application/vnd.ms-excel"), file.getName()) | |
.build(); | |
// Add the entity into the POST request | |
post.setEntity(entity); | |
// Execute the request and get the response | |
HttpResponse response = client.execute(post); | |
// Get the response entity | |
HttpEntity resEntity = response.getEntity(); | |
// Check response status | |
// Do something if it's OK | |
int responseStatus = response.getStatusLine().getStatusCode(); | |
if (responseStatus==200) { | |
// bla.. bla.. bla.. | |
} | |
EntityUtils.consume(resEntity); | |
} catch(Exception e) { | |
e.printStackTrace(); | |
} finally { | |
// Close the connection. No need try-catch | |
HttpClientUtils.closeQuietly(client); | |
} | |
} | |
} |
That's it. Hope my notes helps.