HttpClient httpclient = new DefaultHttpClient();
try
{
HttpGet httpget = new HttpGet(url);
// Create a response handler
ResponseHandler<File> responseHandler = new FileResponseHandler();
File tmp = httpclient.execute(httpget, responseHandler);
try
{
Document doc = fileToDoc(tmp);