Get Http client parameters : Http Client « Apache Common « Java






Get Http client parameters

import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpVersion;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.httpclient.HostConfiguration;

public class HttpClientParameter {

  public static void main(String args[]) throws Exception {

    HttpClient client = new HttpClient();
    client.getParams().setParameter("http.useragent", "My Browser");

    HostConfiguration host = client.getHostConfiguration();
    host.setHost("www.google.com");

    GetMethod method = new GetMethod("http://www.yahoo.com");

    int returnCode = client.executeMethod(host, method);

    System.err.println(method.getResponseBodyAsString());

    System.err.println("User-Agent: " + method.getHostConfiguration().getParams().getParameter("http.useragent"));

    System.err.println("User-Agent: " + method.getParams().getParameter("http.useragent"));

    method.releaseConnection();
  }
}
           
       








Related examples in the same category

1.Get Http methods
2.Execute Http method (post/get)
3.Http Client Simple Demo
4.Get allowed http methods
5.Http post method Example
6.Connect Method Example For Proxy Client
7.Basic Authentication Execute JSP Method
8.Basic Authentication For JSP Page
9.Basic Authentication Get JSP Method Return Code
10.Get Cookie value and set cookie value
11.Using Http Client Inside Thread