Monthly Archives: November 2011

java http client

There are many situations, when java client needs to respond to the server. One can use advantage of the Apache HttpComponents, download binary, and start to use it. Here is simple example HttpClient httpclient = new DefaultHttpClient(); HttpGet httpget = new HttpGet(“http://localhost/”); … Continue reading

Posted in workday | Leave a comment