2017년 6월 12일 월요일

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

1. url에서 읽어온 InputStream을 String 변환 공통 함수

2. 인터넷에서 대충 줒은거 개조했음.


public static void printByInputStream(InputStream is, String tgtMode) {
  byte[] buf = new byte[2048];
  StringBuffer sb = new StringBuffer();
  int len = -1;
  try {
   while ((len = is.read(buf, 0, buf.length)) != -1) {
    sb.append(new String(buf, 0, len));
   }   
   
   System.out.println(sb.toString());
   
   if(tgtMode.equals("weather")){
    parseWeather(sb.toString());
   }else{
    parseAir(sb.toString());
   }
   
  } catch (IOException e) {
   e.printStackTrace();
  }  
 }

댓글 없음:

댓글 쓰기

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

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