HttpURLConnection에 대한 개괄적 개념


HttpURLConnection은 인터넷을 통해 원격의 서버에 연결하는 전문 클래스인데 연결 상태를 확인하게 해 주는 전문 클래스로 정리하면 되겠다. 

이때 연결 상태를 알수 있는 메소드는


getResponseCode()와 getResponseMessage()이다.


HttpURLConnection 객체를 얻는 방법은 URL의 메소드인 openConnection()으로 얻어낼 수 있다.


URL url = new URL("http://www.naver.com");

HttpURLConnection con = null;

con = (HttpURLConnection)url.openConnection();


+ Recent posts