...
| Code Block |
|---|
public static void main(String[] args)
{
HttpClient httpClient = new HttpClient();
//set up httpClient
httpClient.start();
ContentExchange contentExchange = new ContentExchange();
httpClient.setConnectorType(HttpClient.CONNECTOR_SELECT_CHANNEL);
contentExchange.setURL("http://slashdot.org");
httpClient.send(contentExchange);
contentExchange.waitForDone();
System.err.println("Response status: "+contentExchange.getResponseStatus());
}
|