2.1. ¶
디 .
import java.net.URL;
import java.net.URLConnection;
import java.net.MalformedURLException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.BufferedReader;
import java.io.IOException;
public class URLConn{
public static void main(String args[]){
URL url;//URL
URLConnection connection;//URL 는
InputStream is;//URL 내 Stream
InputStreamReader isr;
BufferedReader br;
try{
//URL를 URL ..
url = new URL("http://www.hufslife.com/");
connection = url.openConnection();
//내 InputStream를 ..
is = connection.getInputStream();
isr = new InputStreamReader(is);
br = new BufferedReader(isr);
//내 면 ..
String buf = null;
while(true){
buf = br.readLine();
if(buf == null) break;
System.out.println(buf);
}
}catch(MalformedURLException mue){
System.err.println("못 URL. : java URLConn http://hostname/path]");
System.exit(1);
}catch(IOException ioe){
System.err.println("IOException " + ioe);
ioe.printStackTrace();
System.exit(1);
}
}
};










