i'm trying to get an entire WebPage through a URLConnection.
What's the most efficient way to do this?
I'm doing this already:
URL url = new URL("http://www.google.com/");
URLConnection connection;
connection = url.openConnection();
InputStream in = connection.getInputStream();
BufferedReader bf = new BufferedReader(new InputStreamReader(in));
StringBuffer html = new StringBuffer();
String line = bf.readLine();
while(line!=null){
html.append(line);
line = bf.readLine();
}
bf.close();
html has the entire HTML page.
readLine()strips off line separators, so your output will have them all stripped if you're not explicitly putting them back. Also, if this is Java 1.5 or newer, consider usingStringBuilderinstead ofStringBuffer. – Powerlord Oct 12 '10 at 21:24