HttpURLConnection 클래스프로젝트/버스카드조회2018. 9. 16. 18:39
Table of Contents
반응형
import java.io.BufferedReader;import java.io.InputStreamReader;import java.net.HttpURLConnection;import java.net.URL;public class Example {public static void main(String [] args){BufferedReader in = null;try{URL obj = new URL("http://ws.bus.go.kr/api/rest/buspos/getBusPosByRtid?busRouteId=1111111");# 여기서 URL은 사용자가 호출할 URL주소를 입력하면 된다 .HttpURLConnection con = (HttpURLConnection)obj.openConnection();con.setRequestMethod("GET");in = new BufferedReader(new InputStreamReader(con.getInputStream(),"UTF-8"));String line;while((line = in.readLine()) != null){System.out.println(line);}}catch(Exception e){e.printStackTrace();}finally{if(in != null){try{in.close();}catch(Exception e){e.printStackTrace();}}}}}
반응형
'프로젝트 > 버스카드조회' 카테고리의 다른 글
Open_API ( based java ) (0) | 2018.09.16 |
---|---|
REST API (0) | 2018.09.16 |
J2EE Client 개발 환경 설정하기 (0) | 2018.09.15 |
Web Service와 Web Service의 구성요소 (0) | 2018.09.15 |
Preparing.. (0) | 2018.09.15 |
@IT grow. :: IT grow.
#IT #먹방 #전자기기 #일상
#개발 #일상