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();
  }  
 }

댓글 없음:

댓글 쓰기

[낯선] 2025.02.22 우대락 공연

2025.02.22 우대락 공연 Set List 1. Black Pumas - Colors Covered By 낯선 2. Gate Flowers - 예비역 Covered By 낯선 3. 하동균 - From Mark Covered By 낯선 4. 낯선 ...