2017년 6월 12일 월요일

3. JAVA로 날씨정보, 대기정보 호출...

1. 대기정보값 받기..


public static void getAir(String lat, String lon){
  httpclient = HttpClients.createDefault();
  String callUrl = setLocation(lat, lon, "air");
  try {
   HttpGet httpGet = new HttpGet(callUrl);     //대기정보 url 호출...
   httpGet.addHeader("appKey", appKeyId);
   System.out.println(httpGet.getURI());
   System.out.println("[Executing request]: " + httpGet.getRequestLine());

   HttpResponse response = httpclient.execute(httpGet);

   //System.out.println(response.toString());
   InputStream in2;
   in2 = response.getEntity().getContent();
   printByInputStream(in2 , "air");
   in2.close();
  } catch (ClientProtocolException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } finally {
   
  }
 }

댓글 없음:

댓글 쓰기

[낯선] 2026.06.20 이태원 MZK MuzikBar 공연

간만의 공연 이태원 비틀즈가 이전하여 MZK MuzikBar 로 새 단장 오픈을 한 뒤로 2번째 공연 새 베이시스트가 합류한 뒤로 첫 공연이기도 함.. 이래저래 틀린 부분도 많지만.. 그래도 간만에 그럭저럭 잘했다.. https://www.youtub...