How do I wait till the response is loaded and then get the page?
url = new URL("http://somesite.com/sompage.jsp?somefield=something");
URLConnection conn = url.openConnection();
BufferedReader br = new BufferedReader(
new InputStreamReader(conn.getInputStream()));
String inputLine;
while ((inputLine = br.readLine()) != null) {
System.out.println(inputLine);
}
br.close();