URL url=new URL("주소"); 이런게 있으면
String inputLine;
try {
InputStreamReader isr;
isr = new InputStreamReader(url.openStream());
BufferedReader in = new BufferedReader(isr);
while((inputLine = in.readLine())!=null){}
in.close();
} catch (IOException e) {
e.printStackTrace();
}
'프로그래밍/알고리즘 > Java' 카테고리의 다른 글
[Java] 창작 스도쿠 푸는 알고리즘 (2) | 2015.05.07 |
---|---|
이미지에서 픽셀 배열 얻기. (0) | 2015.04.04 |
자바 ImageIcon 크기 변경하는 방법 (2) | 2014.05.30 |