HttpClient client = new HttpClient();
String url = "https://www.amazon.com/gp/flex/sign-in.html";
HttpMethod method = new GetMethod( url );
client.executeMethod( method );
String response = method.getResponseBodyAsString();
System.out.println( response );
method.releaseConnection();
method.recycle();