JAVA 소스 에서 외부 HTTP의 내용을 가져올 경우가 있다. 이럴 경우에는 소스상에 openConnection을 이용해서 커넥션해서 정보를 가져오면 된다. private String server ="http://www.test.co.kr/test.jsp"; private String userId = "?user_id="; private String userPw = "&user_passwd="; /** * useUrl * @Note : URL커넥션 사용 * @throws IOException * @throws Exception * * */ public void useUrl() throws IOException, Exception { String testVal = getReturnString( getUr..