Http Client Simple Demo : Http Client : Apache Common : Java examples (example source code) Organized by topic

Java
C++
PHP
Java Home »  Apache Common   » [  Http Client  ]  Screenshots 
 



Http Client Simple Demo

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

public class HttpClientTest {

 public static void main(String args[]) throws Exception {
      HttpClient client = new HttpClient();
      GetMethod method = new GetMethod("http://www.google.com");
      int returnCode = client.executeMethod(method);
      System.err.println(method.getResponseBodyAsString());
      method.releaseConnection();
 }
}
           
       
Related examples in the same category
1.  Get Http methods
2.  Get Http client parameters
3.  Execute Http method (post/get)Has Download File
4.  Get allowed http methods
5.  Http post method ExampleHas Download File
6.  Connect Method Example For Proxy ClientHas Download File
7.  Basic Authentication Execute JSP MethodHas Download File
8.  Basic Authentication For JSP PageHas Download File
9.  Basic Authentication Get JSP Method Return CodeHas Download File
10.  Get Cookie value and set cookie valueHas Download File
11.  Using Http Client Inside Thread
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.