/* 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/openapi/service/rest/convergence2017/conver6"); /*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")); /*페이지수*/
urlBuilder.append("&" + URLEncoder.encode("keyword","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/openapi/service/rest/convergence2017/conver6'; /*URL*/
var queryParams = '?' + encodeURIComponent('serviceKey') + '=' + '서비스키'; /*서비스키*/
queryParams += '&' + encodeURIComponent('numOfRows') + '=' + encodeURIComponent('세션당 요청레코드수'); /*세션당 요청레코드수*/
queryParams += '&' + encodeURIComponent('pageNo') + '=' + encodeURIComponent('페이지수'); /*페이지수*/
queryParams += '&' + encodeURIComponent('keyword') + '=' + 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("rnum" + $(this).find("rnum").text());
console.log("pbueName" + $(this).find("pbueName").text());
console.log("foundationDate" + $(this).find("foundationDate").text());
console.log("category" + $(this).find("category").text());
console.log("category1" + $(this).find("category1").text());
console.log("category2" + $(this).find("category2").text());
console.log("category3" + $(this).find("category3").text());
console.log("totalCapacity" + $(this).find("totalCapacity").text());
console.log("entrncCapacity" + $(this).find("entrncCapacity").text());
console.log("qualifiedMember" + $(this).find("qualifiedMember").text());
console.log("remark" + $(this).find("remark").text());
console.log("address" + $(this).find("address").text());
console.log("addressBunji" + $(this).find("addressBunji").text());
console.log("area" + $(this).find("area").text());
console.log("contact" + $(this).find("contact").text());
console.log("fax" + $(this).find("fax").text());
console.log("homepage" + $(this).find("homepage").text());
console.log("location" + $(this).find("location").text());
console.log("locationImg" + $(this).find("locationImg").text());
console.log("foundationPurpose" + $(this).find("foundationPurpose").text());
console.log("supervisor" + $(this).find("supervisor").text());
console.log("xCoordinate" + $(this).find("xCoordinate").text());
console.log("yCoordinate" + $(this).find("yCoordinate").text());
console.log("lon" + $(this).find("lon").text());
console.log("lat" + $(this).find("lat").text());
console.log("zipCode" + $(this).find("zipCode").text());
console.log("pbueSize" + $(this).find("pbueSize").text());
console.log("owner" + $(this).find("owner").text());
});
};
}
xhr.send('');