출처는 다음과 같다
http://www.breakingpar.com/bkp/home.nsf/0/87256B280015193F87256DC80053681B
package financialstatement_parser; import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; public class test { public static void main(String[] args) { String result = getHTML("http://daum.net"); System.out.println(result); }//end main() public static String getHTML(String urlToRead) { URL url; // The URL to read HttpURLConnection conn; // The actual connection to the web page BufferedReader rd; // Used to read results from the web page String line; // An individual line of the web page HTML String result = ""; // A long string containing all the HTML try { url = new URL(urlToRead); conn = (HttpURLConnection) url.openConnection(); conn.setRequestMethod("GET"); rd = new BufferedReader(new InputStreamReader(conn.getInputStream())); while ((line = rd.readLine()) != null) { result += line; } rd.close(); } catch (Exception e) { e.printStackTrace(); } return result; } }//end public class
'소프트웨어 개발 > Java - Basic' 카테고리의 다른 글
eclipse perspective이상해져서 지저분할때 (0) | 2014.09.17 |
---|---|
Eclipse TEXT파일 모조리 UTF-8 인코딩으로 만들기 (0) | 2014.09.17 |
Java에서 header붙이는 방법.. (0) | 2014.05.26 |
Jsoup 이용해서 쉽게 html 파싱하기 (0) | 2014.05.20 |
serializable을 이용한 파일 저장, 불러오기 (0) | 2014.05.09 |