Using Http Client Inside Thread : Http Client : Apache Common : Java examples (example source code) Organized by topic

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



Using Http Client Inside Thread

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

public class UsingHttpClientInsideThread {

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

    HttpClient client = new HttpClient();
    client.getParams().setParameter("http.useragent""Test Client");

    HostConfiguration host = new HostConfiguration();
    host.setHost(new URI("http://localhost:8080"true));

    // first Get a big file
    MethodThread bigDataThread =  new MethodThread(client, host, "/big_movie.wmv");

    bigDataThread.start();

    // next try and get a small file
    MethodThread normalThread = new MethodThread(client, host, "/");

    normalThread.start();
  }
}

class MethodThread extends Thread {

  private HttpClient client;
  private HostConfiguration host;

  private GetMethod method;

  public MethodThread(HttpClient client, HostConfiguration host, String resource) {
    this.client = client;
    this.host = host;
    this.method = new GetMethod(resource);
  }

  public void run() {
    System.err.println("Connecting to: " + host);
    try{
      client.executeMethod(host, method);
      method.getResponseBodyAsStream();
    catch(Exception e) {
      System.err.println(e);
    finally {
      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.  Http Client Simple Demo
5.  Get allowed http methods
6.  Http post method ExampleHas Download File
7.  Connect Method Example For Proxy ClientHas Download File
8.  Basic Authentication Execute JSP MethodHas Download File
9.  Basic Authentication For JSP PageHas Download File
10.  Basic Authentication Get JSP Method Return CodeHas Download File
11.  Get Cookie value and set cookie valueHas Download File
























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