Page 307 - 3-3
P. 307

protected void showList() {
                        // 예외 처리
                        try {
                            //JSON  객체 생성
                            JSONObject jsonObj = new JSONObject(myJSON);
                            //TAG_JSON  과 일치하는 DB      값을 불러오기
                            peoples = jsonObj.getJSONArray(TAG_JSON);


                            // 데이터베이스에서 해당 데이터 찾기
                            for (int i = 0; i < peoples.length(); i++) {
                                //JSON  객체 찾기
                                JSONObject c = peoples.getJSONObject(i);
                                // 아이디 불러오기
                                String id = c.getString(TAG_ID);
                                // 이름 불러오기
                                String name = c.getString(TAG_NAME);
                                // 기록 불러오기
                                String rec = c.getString(TAG_REC);


                                // 해쉬 맵 생성
                                HashMap<String, String> persons = new HashMap<String, String>();
                                // 해쉬 맵에 아이디 추가
                                persons.put(TAG_ID, id);
                                // 해쉬 맵에 이름 추가
                                persons.put(TAG_NAME, name);
                                // 해쉬 맵에 기록 추가
                                persons.put(TAG_REC, rec);


                                // 리스트에 해쉬 맵의 내용 추가
                                personList.add(persons);
                            }


                            // 리스트 어댑터 생성
                            ListAdapter adapter = new SimpleAdapter(
                                    //List 를 작성할 TextView    가 있는 item_list_mooin  을 불러오기
                                    ct, personList, R.layout.item_list_mooin,
                                    // 아이디 이름 기록을 추가,  ,
                                    new String[]{TAG_ID, TAG_NAME, TAG_REC},
                                    //TextView  추가
                                    new int[]{R.id.id, R.id.name, R.id.rec}
                            );


                            // 리스트 어댑터를 리스트로 불러오기
                            list.setAdapter(adapter);
                        }


                                                          - 307 -
   302   303   304   305   306   307   308   309   310   311   312