/* Java Sample */
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;
import java.io.BufferedReader;
import java.io.IOException;
public class openApi {
public static void main(String[] args) throws IOException {
StringBuilder urlBuilder = new StringBuilder("http://api.kcisa.kr/API_CNV_045/request"); /*URL*/
urlBuilder.append("?" + URLEncoder.encode("serviceKey","UTF-8") + "=서비스키"); /*서비스키*/
urlBuilder.append("&" + URLEncoder.encode("numOfRows","UTF-8") + "=" + URLEncoder.encode("세션당 요청레코드수", "UTF-8")); /*세션당 요청레코드수*/
urlBuilder.append("&" + URLEncoder.encode("pageNo","UTF-8") + "=" + URLEncoder.encode("페이지수", "UTF-8")); /*페이지수*/
URL url = new URL(urlBuilder.toString());
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setRequestProperty("Content-type", "application/json");
//json type으로 응답받고 싶을 때는 아래 주석을 제거하시고 사용바랍니다.
//conn.setRequestProperty("Accept","application/json");
System.out.println("Response code: " + conn.getResponseCode());
BufferedReader rd;
if(conn.getResponseCode() >= 200 && conn.getResponseCode() <= 300) {
rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
} else {
rd = new BufferedReader(new InputStreamReader(conn.getErrorStream()));
}
StringBuilder sb = new StringBuilder();
String line;
while ((line = rd.readLine()) != null) {
sb.append(line);
}
rd.close();
conn.disconnect();
System.out.println(sb.toString());
}
}
/* Javascript Sample*/
var xhr = new XMLHttpRequest();
var url = 'http://api.kcisa.kr/API_CNV_045/request'; /*URL*/
var queryParams = '?' + encodeURIComponent('serviceKey') + '=' + '서비스키'; /*서비스키*/
queryParams += '&' + encodeURIComponent('numOfRows') + '=' + encodeURIComponent('세션당 요청레코드수'); /*세션당 요청레코드수*/
queryParams += '&' + encodeURIComponent('pageNo') + '=' + encodeURIComponent('페이지수'); /*페이지수*/
xhr.open('GET', url + queryParams);
xhr.onreadystatechange = function () {
if (this.readyState == 4) {
console.log('status: ' + this.status);
console.log('resultCode: ' + $(this.responseText).find('resultCode').text());
console.log('resultMsg: ' + $(this.responseText).find('resultMsg').text());
var item = $(this.responseText).find('item');
$(item).each(function(){
console.log("ESNTL_ID" + $(this).find("ESNTL_ID").text());
console.log("FCLTY_NM" + $(this).find("FCLTY_NM").text());
console.log("LCLAS_NM" + $(this).find("LCLAS_NM").text());
console.log("MLSFC_NM" + $(this).find("MLSFC_NM").text());
console.log("ZIP_NO" + $(this).find("ZIP_NO").text());
console.log("FCLTY_ROAD_NM_ADDR" + $(this).find("FCLTY_ROAD_NM_ADDR").text());
console.log("FCLTY_LA" + $(this).find("FCLTY_LA").text());
console.log("FCLTY_LO" + $(this).find("FCLTY_LO").text());
console.log("WORKDAY_OPN_BSNS_TIME" + $(this).find("WORKDAY_OPN_BSNS_TIME").text());
console.log("WORKDAY_CLOS_TIME" + $(this).find("WORKDAY_CLOS_TIME").text());
console.log("SAT_OPN_BSNS_TIME" + $(this).find("SAT_OPN_BSNS_TIME").text());
console.log("SAT_CLOS_TIME" + $(this).find("SAT_CLOS_TIME").text());
console.log("SUN_OPN_BSNS_TIME" + $(this).find("SUN_OPN_BSNS_TIME").text());
console.log("SUN_CLOS_TIME" + $(this).find("SUN_CLOS_TIME").text());
console.log("RSTDE_OPN_BSNS_TIME" + $(this).find("RSTDE_OPN_BSNS_TIME").text());
console.log("RSTDE_CLOS_TIME" + $(this).find("RSTDE_CLOS_TIME").text());
console.log("RSTDE_GUID_CN" + $(this).find("RSTDE_GUID_CN").text());
console.log("TEL_NO" + $(this).find("TEL_NO").text());
console.log("OPTN_DC" + $(this).find("OPTN_DC").text());
console.log("ADIT_DC" + $(this).find("ADIT_DC").text());
});
};
}
xhr.send('');