HttpURLConnection POST 방식 사용하기
URL url = new URL("http://www.naver.com"); HttpURLConnection con = (HttpURLConnection) url.openConnection(); // 서버로부터 메세지를 받을 수 있도록 한다. 기본값은 true이다. con.setDoInput(true); // 헤더값을 설정한다. con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); // 전달 방식을 설정한다. POST or GET, 기본값은 GET 이다. con.setRequestMethod("POST"); // 서버로 데이터를 전송할 수 있도록 한다. GET방식이면 사용될 일이 없으나, true로 설정하면 자동으로 PO..
프로그래밍/JAVA
2009. 3. 6. 20:09