Page 275 - 3-3
P. 275

String json;
                                    // 받아온 문자열이 null     이 아닐때 반복
                                    while ((json = bufferedReader.readLine()) != null) {
                                        // 문자열 줄바꿈문자 받아오기+
                                        sb.append(json + "\n");
                                    }


                                    // 공백을 제거하고 출력하기
                                    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);
                    }
                }


                사) DB2.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;


                                                          - 275 -
   270   271   272   273   274   275   276   277   278   279   280