Page 292 - 3-3
P. 292

}


                                  // 공백을 제거하고 출력하기
                                  return sb.toString().trim();
                              }
                              // 예외 발생시
                              catch (Exception e) {
                                  //null  출력
                                  return null;
                              }
                          }


                          @Override
                          // 스레드 작업이 끝나면 동작
                          protected void onPostExecute(String result) {
                              // 결과값 출력
                              myJSON = result;
                              // 리스트 띄우기
                              showList();
                          }
                      }
                      //http url 을 불러오기 위한 객체 생성
                      GetDataJSON g = new GetDataJSON();
                      g.execute(url);
                  }
              }


              카) DB6.java
              package layout;


              // 불러올 클래스들을 import       해준다
              import android.content.Context;
              import android.content.Intent;
              import android.os.AsyncTask;
              import android.os.Bundle;
              import android.support.annotation.Nullable;
              import android.support.v4.app.Fragment;
              import android.view.LayoutInflater;
              import android.view.View;
              import android.view.ViewGroup;
              import android.widget.ListAdapter;
              import android.widget.ListView;
              import android.widget.SimpleAdapter;


              import com.helloworld.smartschool.R;


                                                        - 292 -
   287   288   289   290   291   292   293   294   295   296   297