파싱?.?
import! java.net.*;
import! java.net.URLEncoder;
import! java.io.*;
public class TestURLConnection {
public static void main(String[] args) {
URL url = null;
URLConnection urlConnection = null;
// URL 주소
String sUrl = ("http://student.smu.ac.kr:8080/common/Login.do");
// 파라미터 이름
//String paramName = " ";
// 파라미터 이름에 대한 값
//String paramValue = " ";
//String paramValue2 = " ";
try {
// Get방식으로 전송 하기
url = new URL(sUrl);
urlConnection = url.openConnection();
printByInputStream(urlConnection.getInputStream());
// Post방식으로 전송 하기
url = new URL(sUrl);
urlConnection = url.openConnection();
urlConnection.setDoOutput(true);
printByOutputStream(urlConnection.getOutputStream(), paramName + "=" + paramValue);
printByInputStream(urlConnection.getInputStream());
} catch(Exception e) {
e.printStackTrace();
}
}
// 웹 서버로 부터 받은 웹 페이지 결과를 콘솔에 출력하는 메소드
public static void printByInputStream(InputStream is) {
byte[] buf = new byte[1024];
int len = -1;
try {
while((len = is.read(buf, 0, buf.length)) != -1) {
System.out.write(buf, 0, len);
}
} catch(IOException e) {
e.printStackTrace();
}
}
// 웹 서버로 파라미터명과 값의 쌍을 전송하는 메소드
public static void printByOutputStream(OutputStream os, String msg) {
try {
byte[] msgBuf = msg.getBytes("UTF-8");
os.write(msgBuf, 0, msgBuf.length);
os.flush();
} catch(IOException e) {
e.printStackTrace();
}
}
'scrap > Java/JSP' 카테고리의 다른 글
JAVA - 자바로 프로세스 관리 (0) | 2011.07.04 |
---|---|
urlconnection 기능확장으로 편리하게 사용하기 (0) | 2011.06.27 |
HttpURLConnection클래스로 웹페이지 POST 요청하기 (2) | 2011.06.27 |
웹사이트의 내용을 긁어오는 Webspider (0) | 2011.06.27 |
URLConnection 클래스로 웹 페이지 읽기 (0) | 2011.06.27 |