[서울시 앱 공모전 / 서울시를 이겨라] 서울 열린데이터 광장 Open API 사용 / AsyncTask / Parsing

2017. 11. 22. 01:17Android

#서울 열린데이터 광장 api 키 발급







#API xml 출력 형태 확인 / 샘플 데이터 확인

발급받은 인증키를 넣은 샘플 URL로 들어가면 아래와 같이 xml 형태로 데이터가 보여지게 된다.




#필요한 데이터 체크해서 VO 파일 변수 및 메소드 생성

화장실 이름 및 화장실 종류, 위도, 경도의 데이터만 사용하면 되기 때문에 Value Object에 네 가지의 변수를 String 변수로 저장을 한다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
public class PublicToiletVO {
 
    private String ToiletName;
    private String ToiletCategory;
    private String ToiletLatitude;
    private String ToiletLongitude;
 
    public PublicToiletVO(){}
 
    public PublicToiletVO(String ToiletName, String ToiletCategory, String ToiletLatitude, String ToiletLongitude){
        this.ToiletName = ToiletName;
        this.ToiletCategory = ToiletCategory;
        this.ToiletLatitude = ToiletLatitude;
        this.ToiletLongitude = ToiletLongitude;
    }
 
    public String getToiletName(){
        return this.ToiletName;
    }
    public void setToiletName(String ToiletName){
        this.ToiletName = ToiletName;
    }
 
    public String getToiletCategory(){
        return this.ToiletCategory;
    }
    public void setToiletCategory(String ToiletCategory){
        this.ToiletCategory = ToiletCategory;
    }
 
    public String getToiletLatitude(){
        return this.ToiletLatitude;
    }
    public void setToiletLatitude(String ToiletLatitude){
        this.ToiletLatitude = ToiletLatitude;
    }
 
    public String getToiletLongitude(){
        return this.ToiletLongitude;
    }
    public void setToiletLongitude(String ToiletLongitude){
        this.ToiletLongitude = ToiletLongitude;
    }
 
}
 
cs




#ManagePublicData 싱글톤 클래스 생성 / 이유

ManagePublicData.java 파일을 생성해서 싱글톤 클래스로 만든다.

공공데이터를 불러오는데 걸리는 시간을 단축하기 위해서 Splash 화면에서 부터 공공데이터를 받아오기 위한 설계를 했다.

그래서 공공데이터를 받아오고 관리하는 클래스를 싱클톤으로 만들어서 적절한 곳에 호출을 통해서 원하는 데이터를 받아올 수 있게 만들었다.

위에서 확인한 바와 같이, 샘플 데이터는 화장실마다의 정보를 하나씩 차례로 제공해준다.

그래서 AsyncTask를 통해서 화장실마다의 필요한 화장실 이름, 화장실 종류, 위도, 경도 정보를 Value Object에 넣어 생성 후,

화장실 VO 타입을 갖는 ArrayList에 차례로 하나씩 추가시켜주는 형식이다.

잘 받아왔는지 확인을 하기위해 MainActivity의 TextView에 받아온 화장실 정보들을 띄워주고 Log로도 하나씩 찍어서 확인을 해보는 코드이다.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import android.os.AsyncTask;
import android.util.Log;
 
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserFactory;
 
import java.net.URL;
import java.util.ArrayList;
 
public class ManagePublicData {
 
    private static ManagePublicData managePublicData;
 
    PublicToiletVO publicToiletVO;
 
    private ArrayList<PublicToiletVO> publicToiletVOArrayList;
 
    public ParsePublicToilet parsePublicToilet;
 
    String tag_name = null;
    boolean bSet = false;
 
    public static ManagePublicData getInstance() {
        if (managePublicData == null) {
            managePublicData = new ManagePublicData();
        }
        return managePublicData;
    }
 
    private ManagePublicData() {
        publicToiletVO = new PublicToiletVO();
        publicToiletVOArrayList = new ArrayList<PublicToiletVO>(120);
        parsePublicToilet = new ParsePublicToilet();
    }
 
    public ArrayList<PublicToiletVO> getPublicToiletVOArrayList() {
        return publicToiletVOArrayList;
    }
 
    public void setPublicToiletVOArrayList(ArrayList<PublicToiletVO> publicToiletVOArrayList) {
        this.publicToiletVOArrayList = publicToiletVOArrayList;
    }
 
    public class ParsePublicToilet extends AsyncTask<String, Integer, String> {
 
        @Override
        protected String doInBackground(String... params) {
 
            for (int i = 1; i < 5000; i += 1000) {
                try {
                    String url = "http://openapi.seoul.go.kr:8088/(인증키)/xml/SearchPublicToiletPOIService/" + i + "/" + (i + 999+ "/";
                    XmlPullParserFactory factory = XmlPullParserFactory.newInstance();
                    XmlPullParser parser = factory.newPullParser();
                    URL xmlUrl = new URL(url);
                    xmlUrl.openConnection().getInputStream();
                    parser.setInput(xmlUrl.openStream(), "utf-8");
                    int eventType = parser.getEventType();
 
                    while (eventType != XmlPullParser.END_DOCUMENT) {
 
                        if (eventType == XmlPullParser.START_TAG) {
                            tag_name = parser.getName();
                            if (tag_name.equals("FNAME"| tag_name.equals("ANAME"| tag_name.equals("Y_WGS84"| tag_name.equals("X_WGS84"))
                                bSet = true;
                        } else if (eventType == XmlPullParser.TEXT) {
                            if (bSet) {
                                String data = parser.getText();
                                switch (tag_name) {
                                    case "FNAME":
                                        publicToiletVO.setToiletName(data);
                                        break;
                                    case "ANAME":
                                        publicToiletVO.setToiletCategory(data);
                                        break;
                                    case "X_WGS84":
                                        publicToiletVO.setToiletLongitude(data);
                                        break;
                                    case "Y_WGS84":
                                        publicToiletVO.setToiletLatitude(data);
                                        publicToiletVOArrayList.add(new PublicToiletVO(publicToiletVO.getToiletName(), publicToiletVO.getToiletCategory(), publicToiletVO.getToiletLatitude(), publicToiletVO.getToiletLongitude()));
                                        Log.v("test""화장실 : " + publicToiletVOArrayList.get(publicToiletVOArrayList.size() - 1).getToiletName());
                                        break;
                                }
                                bSet = false;
                            }
                        } else if (eventType == XmlPullParser.END_TAG) {
                        }
                        eventType = parser.next();
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
            return "";
        }
 
        @Override
        protected void onPostExecute(String result) {
            super.onPostExecute(result);
 
            for (int i = 0; i < managePublicData.getPublicToiletVOArrayList().size(); i++) {
                MainActivity.mainTextView.append("\n");
                MainActivity.mainTextView.append(getPublicToiletVOArrayList().get(i).getToiletName() + " ");
            }
        }
    }
}
cs


#권한 설정

Internet 접근 권한을 부여해주지 않으면 아래와 같은 에러가 나는 것을 확인할 수 있다.

따라서, manifest에 아래 코드를 넣어서 권한을 부여해주면 된다


1
<uses-permission android:name="android.permission.INTERNET" />
cs



#AsyncTask


안드로이드에서 리스트뷰를 만들고, 리스트뷰에 들어가는 그림과 글들을 서버에서 가져오도록 만들려고 하는데, 앱 내에 데이터를 불러오는 것은 앱 용량이 너무 늘어날 것 같아서, 서버에서 가져와서 뿌려주도록 한다. AsyncTask를 사용해서 백그라운드에서 공공데이터를 가져온다.


안드로이드 애플리케이션에서 UI는 Main Thread 또는, UI Thread가 관여하고 처리한다.

버튼을 눌러서 서버에서 공공데이터를 받아오는데 Main Thread가 작업을 수행하도록 코드를 구성했다면, 버튼에 대한 처리는 Main Thread가 하기 때문에 데이터를 가져오는 동안 다른 UI와의 교류가 비활성화 될 것이다.

공공데이터를 다 가져오기 전까지 다른 UI작업이 불가능한 것이다.

하지만 Main Thread와 별개로 백그라운드에서 작업을 수행하고 그 결과를 UI에 나타낼 수 있도록 처리해야한다.

이를 AsyncTask(비동기처리)라고 한다.

Main Thread에서 수행될 작업을 좀 더 효율적으로 수행해주는 비동기적 처리방법 중 하나이고 백그라운드 처리 기법이다.




AsyncTask는 시간이 긴 작업은 Thread로 처리하고 UI 변경은 Handler에서 처리하는 과정을 하나의 클래스로 이루어져 번거로운 개발 과정과 Main Thread의 부담을 덜어준다.

그래서, 안드로이드에서는 자바에서 사용하는 스레드 메소드를 사용할 수 있지만, 직접 스레드를 만들기 보다는 AsyncTask를 사용하기를 권장하고 있다.

하지만, AsyncTask는 작업 수행 시간이 수 초간 진행될 때 유용하며, 오랜 시간 작업을 해야하는 경우에는 AsyncTask가 아닌 다른 방법을 권장한다

예를 들면, java.util.concurrent패키지에서 제공하는 Executor, ThreadPoolExecutor 및 FutureTask가 있다.

AsyncTask는 메인 클래스 안에 서브 클래스로 사용해야 한다.




AsyncTask에는 대표적으로 3가지 메소드를 가지고 있으며 실행 전처리는 onPreExecute(), 후처리는 onPostExecute(), 백그라운드로 실행되는 스레드에 run()과 같은 기능인 doInBackground() 메소드가 있다.


  • execute( ) 명령어를 통해 AsyncTask을 실행한다.


  • AsyncTask로 백그라운드 작업을 실행하기 전에 onPreExcuted( )실행된다.

  • 이 부분에는 이미지 로딩 작업이라면 로딩 중 이미지를 띄워 놓기 등, 스레드 작업 이전에 수행할 동작을 구현한다.


  • 새로 만든 스레드에서 백그라운드 작업을 수행한다. execute( ) 메소드를 호출할 때 사용된 파라미터를  전달 받는다.

  • doInBackground( )에서 중간 중간 진행 상태를 UI에 업데이트 하도록 하려면 publishProgress( ) 메소드를 호출해야 한다.

  • onProgressUpdate( ) 메소드는 publishProgress( )가 호출 될 때  마다 자동으로 호출된다.

  • doInBackground( ) 메소드에서 작업이 끝나면 onPostExcuted( ) 로 결과 파라미터를 리턴하면서 그 리턴값을 통해 스레드 작업이 끝났을 때의 동작을 구현합니다. 


  • 여기서 핵심은 onPreExecute( ), onProgressUpadate( ), onPostExecute( ) 메소드는 메인 스레드에서 실행되므로 UI 객체에 자유롭게 접근할 수 있다는 것입니다.

    AsyncTask는 비교적 오래 걸리지 않은 작업에 유용하고, Task 캔슬이 용이하며 로직과 UI 조작이 동시에 일어나야 할 때 매우 유용하게 사용되지만 단점도 있다.
    - excutes(Params)는 UI 스레드에서 직접호출해야함
      1.  - 수동으로 onPreExecute(), onPostExecute(Result), doInBackground(Params...), onProgressUpdate(Progress...) 호출하면 안 됨
      2.  - Task는 오직 한번만 실행될 수 있음
      3.  - 하나의 객체이므로 재사용이 불가능합니다. (객체를 새롭게 생성하면 되지만 메모리 효율 나빠짐)
      4.  - 구현한 액티비티 종료 시 별도의 지시가 없다면 종료되지 않음


    이미지 출처 : https://academy.realm.io/kr/posts/android-thread-looper-handler/




    AsyncTask Generic 타입 / AsyncTask <Params, Progress, Result>

    • Params : doInBackground 파라미터 타입이 되며, execute 메소드 인자 값이 된다.

    • Progress : doInBackground 작업 시 진행 단위의 타입으로 onProgressUpdate 파라미터 타입이다.

    • Result : doInBackground 리턴값으로 onPostExecute 파라미터 타입이다.




    AsyncTask 작업을 수행하기 위해서는 객체를 생성해 execute()메서드와 executeOnExecutor()메서드를 호출하는 방법이 있다.

    #execute() 메서드 호출을 통한 작업 수행

          : 일반적인 사용하는 수행 방법이며 여러 AsyncTask 객체를 만들어 다수의 작업을 수행할 때 execute()가 호출된 순서대로 처리.

    #executeOnExecutor() 메서드 호출을 통한 작업 수행

          : 병렬처리를 위한 수행 방법이며 여러 AsyncTask 객체를 만들어 다수의 작업을 수행할 때 executeOnExecutor()가 호출된 순서에

            상관 없이 동시처리한다.


    AsyncTask 수행을 위해 생성된 객체는 execute()를 통해 단 한번만 실행 가능하며, 재 실행시 예외 상황이 발생한다
    또한 AsyncTask 메인쓰레드에서만 실행되고 호출되어야한다
    AsyncTask는 백그라운드에서 수행되며, 그 결과를 메인쓰레드에 전달해 사용자에게 제공한다
    그렇다면 AsyncTask에 백그라운드 작업을 요청한 메인쓰레드, 즉 AsyncTask를 호출한 Activity destroy된다면 어떻게될까? 여기서부터 문제가 발생한다
    일반적으로 특별한 처리를 해두지 않았다면 AsyncTask는가 참조하고있던 UI가 사라져도 AsyncTask는 백그라운드에서 작업을 수행한다
    그리고 개발자의 코드에 의해 그 결과를 사라진 메인쓰레드에 넘겨주려 할 것이며, 이 과정에서 사라진 UI를 참조하게된다
    하지만 자신이 참조하는 UI는 이미 destroy되었으며 예외 상황이 발생하게된다

    또한 가비지컬렉터는 AsyncTask가 참조하고 있는 이전 Activity를 컬렉트할 수 없어 메모리릭이 발생할 수 있다
    또한 화면 회전에 의해 Activity destroy되고 새 인스턴스로 Activity를 생성할때도 이와같은 상황이 발생할 수 있다
    이를 위한 대비를 해야하며, cancel()을 통해 doInBackground() 실행 완료 후, onPostExcute() 호출을 막고 onCancelled를 호출하도록 해야한다

    마지막으로 AsyncTask를 여러 개 실행하면 이는 순차적으로 수행이 이뤄진다
    ATask.execute()와 BTask.execute()를 순서대로 호출하면 ATask에 대한 작업이 끝나야 BTask에 대한 작업이 수행된다는 뜻이다
    그렇다면 동시에 처리하려면 어떻게해야할까?
    이를 위해 execute() 메서드 대신 executeOnExecutor()라는 메서드가 제공되며 이를 사용해 병렬처리가 가능하다





    # execute() 메소드 사용시 파싱한 값들 Log 출력 확인 (수행한 순서대로 출력되는 것을 확인할 수 있음)

    11-30 02:02:19.954 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동화빌딩
    11-30 02:02:19.954 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대한극장
    11-30 02:02:19.954 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 신아빌딩
    11-30 02:02:19.964 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 보림빌딩
    11-30 02:02:19.964 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 보승빌딩
    11-30 02:02:19.964 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼구상사(주)
    11-30 02:02:19.964 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대흥빌딩
    11-30 02:02:19.974 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 케이티중앙지사
    11-30 02:02:19.984 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 만리공중화장실
    11-30 02:02:19.994 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼선빌딩
    11-30 02:02:19.994 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 전국은행연합회
    11-30 02:02:19.994 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대한생명빌딩
    11-30 02:02:19.994 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대우메트로빌개방화장실
    11-30 02:02:20.004 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동양생명
    11-30 02:02:20.044 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 천연동주민센터
    11-30 02:02:20.044 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충현동주민센터
    11-30 02:02:20.044 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서소문근린공원공중화장실
    11-30 02:02:20.054 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 이태원2공중화장실
    11-30 02:02:20.054 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 후암4공중화장실
    11-30 02:02:20.054 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동자공원공중화장실
    11-30 02:02:20.064 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원놀이터공중화장실
    11-30 02:02:20.074 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원매점옆공중화장실
    11-30 02:02:20.074 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 영천공중화장실
    11-30 02:02:20.074 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 새나라공원공중화장실
    11-30 02:02:20.084 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 배재공원공중화장실
    11-30 02:02:20.084 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원헌수동산공중화장실
    11-30 02:02:20.094 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 아현동주민센터
    11-30 02:02:20.094 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 도화동주민센터
    11-30 02:02:20.094 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원북문공중화장실
    11-30 02:02:20.104 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 도원공원공중화장실
    11-30 02:02:20.114 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 세종로파출소
    11-30 02:02:20.124 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 소월길주유소화장실
    11-30 02:02:20.124 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울중앙우체국
    11-30 02:02:20.124 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충무지구대
    11-30 02:02:20.144 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 영동주유소화장실
    11-30 02:02:20.144 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 갈월동주유소화장실
    11-30 02:02:20.154 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 역전주유소화장실
    11-30 02:02:20.154 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 만리주유소화장실
    11-30 02:02:20.164 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 중구파출소
    11-30 02:02:20.164 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 중림파출소
    11-30 02:02:20.164 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 태평로지구대
    11-30 02:02:20.184 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 퇴계로5가우체국
    11-30 02:02:20.184 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남대문파출소
    11-30 02:02:20.184 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남대문2가파출소
    11-30 02:02:20.184 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 명동파출소
    11-30 02:02:20.194 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충무로119안전센터
    11-30 02:02:20.194 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울역지구대
    11-30 02:02:20.194 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 교남동사무소
    11-30 02:02:20.194 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지로3가치안센터
    11-30 02:02:20.204 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지로4가우체국
    11-30 02:02:20.214 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 구몬수학빌딩개방화장실
    11-30 02:02:20.214 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 고려빌딩개방화장실
    11-30 02:02:20.224 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 일중기업B동
    11-30 02:02:20.224 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 피자헛(교보점)개방화장실
    11-30 02:02:20.224 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼성본관무인자동화장실
    11-30 02:02:20.224 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 버거킹(교보점)개방화장실
    11-30 02:02:20.234 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : KFC광화문점개방화장실
    11-30 02:02:20.244 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남대문시장입구1무인자동화장실
    11-30 02:02:20.244 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남대문시장입구2무인자동화장실
    11-30 02:02:20.244 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지로입구무인자동화장실
    11-30 02:02:20.244 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 숭례문무인자동화장실
    11-30 02:02:20.244 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 올리브타워
    11-30 02:02:20.254 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 현대해상빌딩개방화장실
    11-30 02:02:20.254 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동아미디어센터개방화장실
    11-30 02:02:20.264 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : SK본사개방화장실
    11-30 02:02:20.264 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 사회복지공동모금회
    11-30 02:02:20.264 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 산경물산주식회
    11-30 02:02:20.544 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 연세세브란스빌딩
    11-30 02:02:20.554 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 연세봉래빌딩
    11-30 02:02:20.574 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한외빌딩개방화장실
    11-30 02:02:20.574 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 장교공영(주)개방화장실
    11-30 02:02:20.574 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 씨티파크
    11-30 02:02:20.604 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한국관광공사개방화장실
    11-30 02:02:20.614 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼화빌딩
    11-30 02:02:20.644 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울상공회의소
    11-30 02:02:20.644 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 아이엔지센터
    11-30 02:02:20.644 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 아일빌딩
    11-30 02:02:20.654 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 오양수산(주)
    11-30 02:02:20.654 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 예금보험공사개방화장실
    11-30 02:02:20.694 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 외환은행빌딩
    11-30 02:02:20.694 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 유원빌딩
    11-30 02:02:20.694 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)동부화재
    11-30 02:02:20.704 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 애오개역
    11-30 02:02:20.704 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 마포파크팰리스개방화장실
    11-30 02:02:20.714 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 중림동공중화장실
    11-30 02:02:20.724 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 숙대입구역
    11-30 02:02:20.734 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지로입구역
    11-30 02:02:20.734 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 공덕역
    11-30 02:02:20.734 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 아현역
    11-30 02:02:20.734 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충정로역
    11-30 02:02:20.734 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 광화문역
    11-30 02:02:20.744 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지로3가역
    11-30 02:02:20.744 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 시청역(1)
    11-30 02:02:20.744 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종로3가역(1)
    11-30 02:02:20.744 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 청파공원공중화장실
    11-30 02:02:20.754 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울역(4)
    11-30 02:02:20.754 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 명동역
    11-30 02:02:20.754 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 회현역
    11-30 02:02:20.754 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 모자원공중화장실
    11-30 02:02:20.764 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 시청역(2)
    11-30 02:02:20.764 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 아웃백시청점개방화장실
    11-30 02:02:20.764 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 매일경제개방화장실
    11-30 02:02:20.774 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : GS빌딩
    11-30 02:02:20.774 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동광제약
    11-30 02:02:20.774 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 신한은행
    11-30 02:02:20.774 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)신세계별관
    11-30 02:02:20.774 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 지지인터내셔널(주)
    11-30 02:02:20.784 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 청계천삼일교무인자동화장실
    11-30 02:02:20.784 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 경찰청무인자동화장실
    11-30 02:02:20.784 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 개방
    11-30 02:02:20.784 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (학)을지학원
    11-30 02:02:20.794 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : TBS교통방송
    11-30 02:02:20.794 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 신세계백화점
    11-30 02:02:20.794 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 청계천장통교무인자동화장실
    11-30 02:02:20.804 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 신한은행
    11-30 02:02:20.804 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)옥션
    11-30 02:02:20.804 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 조양빌딩
    11-30 02:02:20.804 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 공덕역(6)
    11-30 02:02:20.804 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동화주차빌딩
    11-30 02:02:20.814 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 천수기업(주)
    11-30 02:02:20.814 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)삼원이엔에스
    11-30 02:02:20.814 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼윤빌딩
    11-30 02:02:20.814 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 고려통상주식회사
    11-30 02:02:20.814 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 조양빌딩본관
    11-30 02:02:20.814 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 맥도날드(종로3가)개방화장실
    11-30 02:02:20.814 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동양종합금융
    11-30 02:02:20.814 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지병원
    11-30 02:02:20.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충정로역
    11-30 02:02:20.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대한통운빌딩
    11-30 02:02:20.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 청방빌딩
    11-30 02:02:20.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 코리아나호텔
    11-30 02:02:20.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)신흥
    11-30 02:02:20.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울YWCA회관
    11-30 02:02:20.834 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남강건설회관빌딩
    11-30 02:02:20.834 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대한항공빌딩
    11-30 02:02:20.834 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 중앙데코프라자개방화장실
    11-30 02:02:20.844 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 아웃백충무로점개방화장실
    11-30 02:02:20.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 제분빌딩
    11-30 02:02:20.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 금풍빌딩
    11-30 02:02:20.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 다동빌딩
    11-30 02:02:20.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대일빌딩
    11-30 02:02:20.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한화역사(주)
    11-30 02:02:20.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한국화이자
    11-30 02:02:20.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한주흥산
    11-30 02:02:20.864 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서대문경찰서
    11-30 02:02:20.884 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충정로우체국
    11-30 02:02:20.914 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 후암동주민센터
    11-30 02:02:20.914 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 후암119안전센터
    11-30 02:02:21.174 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 마포주유소화장실
    11-30 02:02:21.194 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서부수도사업소
    11-30 02:02:21.194 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서부지방검찰청
    11-30 02:02:21.194 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 마포우체국
    11-30 02:02:21.204 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 공덕동주민센터
    11-30 02:02:21.204 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 마포소방서
    11-30 02:02:21.214 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충정로지구대
    11-30 02:02:21.224 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 북아현동주민센터
    11-30 02:02:21.224 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 상수도사업본부
    11-30 02:02:21.234 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 용산2가동주민센터
    11-30 02:02:21.254 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 원효제1동 주민센터
    11-30 02:02:21.254 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창동주민센터
    11-30 02:02:21.254 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 회현동주민센터
    11-30 02:02:21.264 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서대문역무인자동화장실
    11-30 02:02:21.274 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 용산구청
    11-30 02:02:21.284 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종로3가무인자동화장실
    11-30 02:02:21.284 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 우리은행독립문지점
    11-30 02:02:21.324 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 청계천관수교무인자동화장실
    11-30 02:02:21.324 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 뉴서울호텔
    11-30 02:02:21.324 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대성산업
    11-30 02:02:21.324 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대원강업
    11-30 02:02:21.324 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대한제지
    11-30 02:02:21.324 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼성생명보험(주)
    11-30 02:02:21.334 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 제일빌딩개방화장실
    11-30 02:02:21.334 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대우조선해양빌딩
    11-30 02:02:21.334 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)SK-telecom
    11-30 02:02:21.334 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 국민은행명동점
    11-30 02:02:21.344 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 조양빌딩
    11-30 02:02:21.344 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 흥국생명보험(주)
    11-30 02:02:21.344 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 흥국제선(주)
    11-30 02:02:21.354 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충정타워개방화장실
    11-30 02:02:21.354 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 리젠트화재개방화장실
    11-30 02:02:21.354 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대우재단빌딩
    11-30 02:02:21.354 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : SC제일은행
    11-30 02:02:21.354 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : STX남산타워
    11-30 02:02:21.354 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 기독교대한감리회유지재단
    11-30 02:02:21.364 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 기종빌딩
    11-30 02:02:21.364 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남정개발주식회사
    11-30 02:02:21.364 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종근당빌딩개방화장실
    11-30 02:02:21.374 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 별정우체국개방화장실
    11-30 02:02:21.374 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 풍림VIP개방화장실
    11-30 02:02:21.384 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종로1번가빌딩개방화장실
    11-30 02:02:21.384 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충정빌딩개방화장실
    11-30 02:02:21.384 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 피어리스개방화장실
    11-30 02:02:21.394 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼창빌딩개방화장실
    11-30 02:02:21.394 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충무로타워빌딩개방화장실
    11-30 02:02:21.724 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종각역
    11-30 02:02:21.744 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 피자헛(종로3가)개방화장실
    11-30 02:02:21.744 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : KTF남영점개방화장실
    11-30 02:02:21.754 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : KFC광화문점개방화장실
    11-30 02:02:21.774 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 인송빌딩개방화장실
    11-30 02:02:21.794 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원앞역
    11-30 02:02:21.814 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남영역
    11-30 02:02:21.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원운동장옆공중화장실
    11-30 02:02:21.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서대문역
    11-30 02:02:21.834 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 파파이스충무로점개방화장실
    11-30 02:02:21.834 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대림정개방화장실
    11-30 02:02:21.844 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 풍산빌딩개방화장실
    11-30 02:02:21.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 맥도날드(종로1가)개방화장실
    11-30 02:02:21.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남영빌딩개방화장실
    11-30 02:02:21.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 캠퍼스프라자개방화장실
    11-30 02:02:21.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 숭례문수입상가운영회개방화장실
    11-30 02:02:21.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : KFC서소문점개방화장실
    11-30 02:02:21.864 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동화빌딩개방화장실
    11-30 02:02:21.874 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 임광토건주식회사
    11-30 02:02:21.884 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창운동장
    11-30 02:02:21.884 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 칠보물산
    11-30 02:02:21.894 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 금세기빌딩
    11-30 02:02:21.894 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 정경빌딩
    11-30 02:02:21.894 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 우리빌딩
    11-30 02:02:21.904 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 알파유통(주)개방화장실
    11-30 02:02:21.904 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 영원프라자
    11-30 02:02:21.904 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 힐튼호텔
    11-30 02:02:21.904 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 롯데마트개방화장실
    11-30 02:02:21.904 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 버거킹명동본점개방화장실
    11-30 02:02:21.904 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지로3구역
    11-30 02:02:21.904 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 씨티그룹
    11-30 02:02:21.904 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 진고개개방화장실
    11-30 02:02:21.904 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 명동역
    11-30 02:02:21.914 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 문화일보
    11-30 02:02:21.914 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 일진빌딩
    11-30 02:02:21.924 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 영화빌딩
    11-30 02:02:21.924 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 웨스턴조선호텔
    11-30 02:02:21.924 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 명동
    11-30 02:02:22.324 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 정동근린공원공중화장실
    11-30 02:02:22.324 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원기념식수지옆공중화장실
    11-30 02:02:22.334 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 홍파우편취급소
    11-30 02:02:22.334 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 카톨릭회관무인자동화장실
    11-30 02:02:22.334 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 명동주민자치센터
    11-30 02:02:22.344 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 광화문우체국
    11-30 02:02:22.354 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종로3가치안센터
    11-30 02:02:22.354 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종로1234가주민센터
    11-30 02:02:22.364 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지로동주민센터
    11-30 02:02:22.374 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 중림동주민센터
    11-30 02:02:22.374 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 인사동공중화장실
    11-30 02:02:22.384 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남영동주민센터
    11-30 02:02:22.384 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 용문동주민센터
    11-30 02:02:22.394 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 청파동주민센터
    11-30 02:02:22.404 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 청파주유소화장실
    11-30 02:02:22.404 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 조선일보무인자동화장실
    11-30 02:02:22.404 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종각제일은행무인자동화장실
    11-30 02:02:22.414 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 아현시장무인자동화장실
    11-30 02:02:22.414 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 소공동주민센터
    11-30 02:02:22.424 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 전쟁기념관
    11-30 02:02:22.424 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 정안빌딩
    11-30 02:02:22.424 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울시티타워
    11-30 02:02:22.424 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 정석힉원
    11-30 02:02:22.434 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 광일빌딩개방화장실
    11-30 02:02:22.434 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 청계상가개방화장실
    11-30 02:02:22.684 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한국YMCA
    11-30 02:02:22.684 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울센터빌딩
    11-30 02:02:22.684 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)부영
    11-30 02:02:22.684 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)사보이호텔
    11-30 02:02:22.694 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 필동주유소화장실
    11-30 02:02:22.704 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 피자헛(관철점)개방화장실
    11-30 02:02:22.714 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 코오롱빌딩
    11-30 02:02:22.714 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한성엘시아이(주)
    11-30 02:02:22.724 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한전산업개발(주)
    11-30 02:02:22.724 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 하나은행다동센터
    11-30 02:02:22.754 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동아빌딩개방화장실
    11-30 02:02:22.764 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한국정보사회진흥원개방화장실
    11-30 02:02:22.764 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 시그너스개방화장실
    11-30 02:02:22.764 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)화산테크
    11-30 02:02:22.774 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한화건설
    11-30 02:02:22.784 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 디에스디엘주식회사
    11-30 02:02:22.784 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 롯데백화점
    11-30 02:02:22.784 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 맵스자산운영(주)
    11-30 02:02:22.794 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)배재학당 동관
    11-30 02:02:22.804 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 부림빌딩
    11-30 02:02:22.814 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 미검학원
    11-30 02:02:22.814 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 매일경제신문사
    11-30 02:02:22.814 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 메사
    11-30 02:02:22.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 명동센트럴빌딩
    11-30 02:02:22.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 세인빌딩개방화장실
    11-30 02:02:22.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : KFC종로점개방화장실
    11-30 02:02:22.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 저동B/D
    11-30 02:02:22.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 태평빌딩
    11-30 02:02:22.824 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 민들레영토개방화장실
    11-30 02:02:22.834 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한화빌딩개방화장실
    11-30 02:02:22.834 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 버거킹(종로점)개방화장실
    11-30 02:02:22.844 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 맥도날드(종로2가점)개방화장실
    11-30 02:02:22.844 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 일진빌딩
    11-30 02:02:22.844 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 재능빌딩
    11-30 02:02:22.844 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 영풍빌딩개방화장실
    11-30 02:02:22.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)서울렉스호텔
    11-30 02:02:22.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울역
    11-30 02:02:22.854 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 현대해상화재보험(주)
    11-30 02:02:22.864 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 홍덕빌딩
    11-30 02:02:22.864 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : HSBC빌딩
    11-30 02:02:22.864 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 시네마정동개방화장실
    11-30 02:02:22.864 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 신민상호저축은행개방화장실
    11-30 02:02:22.864 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 엠 플라자
    11-30 02:02:22.874 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : MIES빌딩
    11-30 02:02:22.874 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 가든플레이스개방화장실
    11-30 02:02:22.874 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 4.19도서관개방화장실
    11-30 02:02:22.874 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 극동빌딩개방화장실
    11-30 02:02:22.884 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 인제대서울백병원개방화장실
    11-30 02:02:22.904 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)삼부토건
    11-30 02:02:22.914 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효성인텔리안개방화장실
    11-30 02:02:22.914 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 고려아카데미개방화장실
    11-30 02:02:22.914 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 배재빌딩
    11-30 02:02:22.924 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 공금옥
    11-30 02:02:22.924 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 광학빌딩
    11-30 02:02:22.924 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 영생일로빌딩
    11-30 02:02:22.924 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 계원빌딩개방화장실
    11-30 02:02:22.934 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 회현소방파출소
    11-30 02:02:22.934 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 세종호텔
    11-30 02:02:22.934 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 신남문빌딩
    11-30 02:02:22.944 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서계주유소화장실
    11-30 02:02:22.964 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동자동주유소화장실
    11-30 02:02:22.974 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 초동주유소화장실
    11-30 02:02:22.974 13444-13682/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서남주유소화장실
    11-30 02:02:23.724 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 대림상가노상공영주차장(구)
    11-30 02:02:23.874 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 공덕1-1 공영주차장(구)
    11-30 02:02:23.884 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 광화문빌딩(구)
    11-30 02:02:24.604 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 남대문시장2번게이트앞 이륜자동차주차장(시)
    11-30 02:02:24.614 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 남대문시장3번게이트 이륜자동차주차장(시)
    11-30 02:02:24.624 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 남대문시장알파문구앞 이륜자동차주차장(시)
    11-30 02:02:24.704 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 남대문시장연세상가앞 이륜자동차주차장(시)
    11-30 02:02:24.724 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 남대문시장자유상가앞 이륜차주차장(시)
    11-30 02:02:24.724 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 남산동 공영주차장(구)
    11-30 02:02:24.734 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 남산소파길 노상 공영주차장(구)
    11-30 02:02:24.774 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 뉴국제호텔 앞 노상 공영주차장(구)
    11-30 02:02:24.784 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 다동공원 제4부지 공영주차장(구)
    11-30 02:02:24.784 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 다동쉼터 노상공영주차장(구)
    11-30 02:02:27.074 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 미근동노외(시)
    11-30 02:02:28.314 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 중림종합복지센터 부설주차장(구_중림(제5))(구)
    11-30 02:02:28.384 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 중앙우체국옆 이륜자동차주차장(구)
    11-30 02:02:29.814 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 영국대사관 옆 노상 공영주차장(구)
    11-30 02:02:30.244 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 북아현 가구단지(구)
    11-30 02:02:30.494 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 삼풍상가 노상 공영주차장(구)
    11-30 02:02:30.614 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 용문동주차장(구)
    11-30 02:02:30.614 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 용산2가소월주차장(구)
    11-30 02:02:31.324 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 효창공원 공영주차장(구)
    11-30 02:02:31.334 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 효창공원1(구)
    11-30 02:02:31.494 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 새문안로2길(노상주차장)(시)
    11-30 02:02:31.754 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 효창공원2 공영주차장(구)
    11-30 02:02:31.754 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 효창공원2(구)
    11-30 02:02:31.814 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 후암동주차장(구)
    11-30 02:02:31.844 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 서계동공영주차장(구)
    11-30 02:02:31.854 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 서린노외(글로벌센터)주차장(시)
    11-30 02:02:31.904 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 서울스퀘어빌딩앞 이륜차 전용주차장(시)
    11-30 02:02:32.114 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 이태원2동 공영주차장(구)
    11-30 02:02:32.114 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 이화여고 앞 노상 공영주차장(구)
    11-30 02:02:32.494 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 청소년회관 뒤 노상 공영주차장(구)
    11-30 02:02:32.504 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 청파동1마을공원공영주차장(구)
    11-30 02:02:32.504 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 청파동청사(구)
    11-30 02:02:32.514 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 초동 공영주차장(구)
    11-30 02:02:32.534 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 충현동 제1거주자우선주차장(구)
    11-30 02:02:32.534 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 코오롱빌딩옆 노상공영주차장(구)
    11-30 02:02:32.554 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 탑골공원(구)
    11-30 02:02:33.264 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 세운상가밑(구)
    11-30 02:02:33.394 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 손기정체육공원 공영주차장(구)
    11-30 02:02:33.754 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 한국관광공사옆 노상공영주차장(구)
    11-30 02:02:34.114 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 한미빌딩옆(구)
    11-30 02:02:35.504 13444-13722/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 종각(구)
    11-30 02:02:37.544 13444-13877/com.example.jaehyukshin.welcomeseoulloreview V/test: 공원 : 경희궁
    11-30 02:02:37.564 13444-13877/com.example.jaehyukshin.welcomeseoulloreview V/test: 공원 : 남산도시자연공원
    11-30 02:02:37.644 13444-13877/com.example.jaehyukshin.welcomeseoulloreview V/test: 공원 : 손기정체육공원
    11-30 02:02:37.664 13444-13877/com.example.jaehyukshin.welcomeseoulloreview V/test: 공원 : 탑골근린공원
    11-30 02:02:37.664 13444-13877/com.example.jaehyukshin.welcomeseoulloreview V/test: 공원 : 효창근린공원
    11-30 02:02:37.954 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 아현골목시장
    11-30 02:02:37.954 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 공덕시장
    11-30 02:02:37.954 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 마포시장
    11-30 02:02:37.964 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 영천시장
    11-30 02:02:37.984 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 만리시장
    11-30 02:02:37.984 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 후암시장
    11-30 02:02:37.984 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 용문시장
    11-30 02:02:37.984 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 신흥시장
    11-30 02:02:37.994 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 세운상가가동
    11-30 02:02:37.994 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 종각지하쇼핑센터
    11-30 02:02:37.994 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 남대문시장
    11-30 02:02:37.994 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 숭례문상가
    11-30 02:02:37.994 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 명동 지하도상가
    11-30 02:02:37.994 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 남대문로 지하상가
    11-30 02:02:38.004 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 을지입구지하상가
    11-30 02:02:38.004 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 명동역지하도쇼핑센터
    11-30 02:02:38.004 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 시청광장 지하쇼핑센터
    11-30 02:02:38.004 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 을지지하보도상가
    11-30 02:02:38.004 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 소공지하도상가
    11-30 02:02:38.004 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 회현지하도상가
    11-30 02:02:38.004 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 삼익패션타운
    11-30 02:02:38.004 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 자유상가
    11-30 02:02:38.004 13444-13881/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 인현시장

    # execute() 메소드 사용시 파싱한 값들 Log 출력 확인 (병렬적으로 데이터를 가져오는 것을 확인할 수 있음)

    11-30 02:10:03.904 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 아현골목시장
    11-30 02:10:03.904 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 공덕시장
    11-30 02:10:03.914 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 마포시장
    11-30 02:10:03.914 14732-15529/com.example.jaehyukshin.welcomeseoulloreview V/test: 공원 : 경희궁
    11-30 02:10:03.924 14732-15529/com.example.jaehyukshin.welcomeseoulloreview V/test: 공원 : 서울숲
    11-30 02:10:03.954 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 만리시장
    11-30 02:10:03.954 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 후암시장
    11-30 02:10:03.954 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 용문시장
    11-30 02:10:03.954 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 신흥시장
    11-30 02:10:03.974 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 동대문상가C동
    11-30 02:10:03.974 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 숭례문상가
    11-30 02:10:03.974 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 청계5가 지하쇼핑센터
    11-30 02:10:03.974 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 남대문로 지하상가
    11-30 02:10:03.974 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 명동역지하도쇼핑센터
    11-30 02:10:03.974 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 시청광장 지하쇼핑센터
    11-30 02:10:03.974 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 을지지하보도상가
    11-30 02:10:03.974 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 소공지하도상가
    11-30 02:10:03.974 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 회현지하도상가
    11-30 02:10:03.984 14732-15529/com.example.jaehyukshin.welcomeseoulloreview V/test: 공원 : 청량공원
    11-30 02:10:03.984 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 삼익패션타운
    11-30 02:10:03.984 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 자유상가
    11-30 02:10:03.984 14732-15530/com.example.jaehyukshin.welcomeseoulloreview V/test: 시장 : 인현시장
    11-30 02:10:04.004 14732-15529/com.example.jaehyukshin.welcomeseoulloreview V/test: 공원 : 봉화산근린공원
    11-30 02:10:04.134 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동화빌딩
    11-30 02:10:04.134 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대한극장
    11-30 02:10:04.134 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 신아빌딩
    11-30 02:10:04.164 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 보림빌딩
    11-30 02:10:04.164 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 보승빌딩
    11-30 02:10:04.164 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼구상사(주)
    11-30 02:10:04.174 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대흥빌딩
    11-30 02:10:04.174 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 케이티중앙지사
    11-30 02:10:04.194 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 만리공중화장실
    11-30 02:10:04.194 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼선빌딩
    11-30 02:10:04.194 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 전국은행연합회
    11-30 02:10:04.194 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대한생명빌딩
    11-30 02:10:04.204 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대우메트로빌개방화장실
    11-30 02:10:04.204 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 남산동 공영주차장(구)
    11-30 02:10:04.204 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 남산소파길 노상 공영주차장(구)
    11-30 02:10:04.234 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동양생명
    11-30 02:10:04.294 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 천연동주민센터
    11-30 02:10:04.294 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충현동주민센터
    11-30 02:10:04.304 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서소문근린공원공중화장실
    11-30 02:10:04.314 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 이태원2공중화장실
    11-30 02:10:04.314 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 후암4공중화장실
    11-30 02:10:04.314 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동자공원공중화장실
    11-30 02:10:04.344 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원놀이터공중화장실
    11-30 02:10:04.364 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원매점옆공중화장실
    11-30 02:10:04.364 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 영천공중화장실
    11-30 02:10:04.374 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 새나라공원공중화장실
    11-30 02:10:04.374 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 배재공원공중화장실
    11-30 02:10:04.384 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원헌수동산공중화장실
    11-30 02:10:04.394 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 아현동주민센터
    11-30 02:10:04.394 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 도화동주민센터
    11-30 02:10:04.404 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원북문공중화장실
    11-30 02:10:04.404 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 도원공원공중화장실
    11-30 02:10:04.434 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 소월길주유소화장실
    11-30 02:10:04.454 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울중앙우체국
    11-30 02:10:04.454 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충무지구대
    11-30 02:10:04.464 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 영동주유소화장실
    11-30 02:10:04.474 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 갈월동주유소화장실
    11-30 02:10:04.484 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 역전주유소화장실
    11-30 02:10:04.484 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 만리주유소화장실
    11-30 02:10:04.494 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 중구파출소
    11-30 02:10:04.494 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 중림파출소
    11-30 02:10:04.494 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 태평로지구대
    11-30 02:10:04.524 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 퇴계로5가우체국
    11-30 02:10:04.534 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남대문파출소
    11-30 02:10:04.534 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남대문2가파출소
    11-30 02:10:04.534 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 명동파출소
    11-30 02:10:04.544 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충무로119안전센터
    11-30 02:10:04.554 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울역지구대
    11-30 02:10:04.554 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 교남동사무소
    11-30 02:10:04.554 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지로3가치안센터
    11-30 02:10:04.564 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지로4가우체국
    11-30 02:10:04.574 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 구몬수학빌딩개방화장실
    11-30 02:10:04.574 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 고려빌딩개방화장실
    11-30 02:10:04.584 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 일중기업B동
    11-30 02:10:04.604 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 피자헛(교보점)개방화장실
    11-30 02:10:04.614 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼부르네상스오피스텔
    11-30 02:10:04.624 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : KFC광화문점개방화장실
    11-30 02:10:04.634 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남대문시장입구1무인자동화장실
    11-30 02:10:04.634 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남대문시장입구2무인자동화장실
    11-30 02:10:04.634 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지로입구무인자동화장실
    11-30 02:10:04.644 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 숭례문무인자동화장실
    11-30 02:10:04.644 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 올리브타워
    11-30 02:10:04.654 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 현대해상빌딩개방화장실
    11-30 02:10:04.654 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동아미디어센터개방화장실
    11-30 02:10:04.664 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : SK본사개방화장실
    11-30 02:10:04.664 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 사회복지공동모금회
    11-30 02:10:04.664 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 산경물산주식회
    11-30 02:10:04.904 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 뉴국제호텔 앞 노상 공영주차장(구)
    11-30 02:10:04.984 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 다동공원 제4부지 공영주차장(구)
    11-30 02:10:04.984 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 다동쉼터 노상공영주차장(구)
    11-30 02:10:05.604 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 
    11-30 02:10:05.644 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 장교공영(주)개방화장실
    11-30 02:10:05.644 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 씨티파크
    11-30 02:10:05.644 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한국관광공사개방화장실
    11-30 02:10:05.654 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼화빌딩
    11-30 02:10:05.654 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울상공회의소
    11-30 02:10:05.664 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 아이엔지센터
    11-30 02:10:05.674 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 오양수산(주)
    11-30 02:10:05.684 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 예금보험공사개방화장실
    11-30 02:10:05.714 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 외환은행빌딩
    11-30 02:10:05.714 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 유원빌딩
    11-30 02:10:05.724 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)동부화재
    11-30 02:10:05.744 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 도림천역
    11-30 02:10:05.744 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 숙대입구역
    11-30 02:10:05.774 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 독립문역
    11-30 02:10:05.794 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 롯데마트
    11-30 02:10:05.804 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 매일경제개방화장실
    11-30 02:10:05.824 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한마음공원화장실
    11-30 02:10:05.824 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 도로교통공단본부
    11-30 02:10:05.844 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 명성교회
    11-30 02:10:05.844 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 공덕역(6)
    11-30 02:10:05.844 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동화주차빌딩
    11-30 02:10:05.844 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 천수기업(주)
    11-30 02:10:05.844 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)삼원이엔에스
    11-30 02:10:05.844 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼윤빌딩
    11-30 02:10:05.854 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 고려통상주식회사
    11-30 02:10:05.854 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 조양빌딩본관
    11-30 02:10:05.854 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 맥도날드(종로3가)개방화장실
    11-30 02:10:05.854 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동양종합금융
    11-30 02:10:05.854 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지병원
    11-30 02:10:05.854 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충정로역
    11-30 02:10:05.864 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대한통운빌딩
    11-30 02:10:05.864 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 청방빌딩
    11-30 02:10:05.864 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 코리아나호텔
    11-30 02:10:05.864 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)신흥
    11-30 02:10:05.864 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울YWCA회관
    11-30 02:10:05.874 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남강건설회관빌딩
    11-30 02:10:05.874 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대한항공빌딩
    11-30 02:10:05.884 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 중앙데코프라자개방화장실
    11-30 02:10:05.894 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한화역사(주)
    11-30 02:10:05.904 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한국화이자
    11-30 02:10:05.904 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한주흥산
    11-30 02:10:05.904 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서대문경찰서
    11-30 02:10:05.934 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 후암동주민센터
    11-30 02:10:06.384 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 마포주유소화장실
    11-30 02:10:06.424 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서부수도사업소
    11-30 02:10:06.424 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서부지방검찰청
    11-30 02:10:06.434 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 마포우체국
    11-30 02:10:06.444 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 공덕동주민센터
    11-30 02:10:06.454 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 마포소방서
    11-30 02:10:06.464 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충정로지구대
    11-30 02:10:06.484 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 북아현동주민센터
    11-30 02:10:06.484 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 상수도사업본부
    11-30 02:10:06.494 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 용산2가동주민센터
    11-30 02:10:06.524 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 원효제1동 주민센터
    11-30 02:10:06.524 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창동주민센터
    11-30 02:10:06.534 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 회현동주민센터
    11-30 02:10:06.554 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서대문역무인자동화장실
    11-30 02:10:06.584 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 용산구청
    11-30 02:10:06.594 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종로3가무인자동화장실
    11-30 02:10:06.604 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 우리은행독립문지점
    11-30 02:10:06.644 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 청계천관수교무인자동화장실
    11-30 02:10:06.654 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 뉴서울호텔
    11-30 02:10:06.654 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대성산업
    11-30 02:10:06.654 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대원강업
    11-30 02:10:06.654 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대한제지
    11-30 02:10:06.654 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼성생명보험(주)
    11-30 02:10:06.664 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 제일빌딩개방화장실
    11-30 02:10:06.664 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대우조선해양빌딩
    11-30 02:10:06.664 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)SK-telecom
    11-30 02:10:06.664 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 국민은행명동점
    11-30 02:10:06.674 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 조양빌딩
    11-30 02:10:06.674 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 흥국생명보험(주)
    11-30 02:10:06.684 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 흥국제선(주)
    11-30 02:10:06.694 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충정타워개방화장실
    11-30 02:10:06.694 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 리젠트화재개방화장실
    11-30 02:10:06.694 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대우재단빌딩
    11-30 02:10:06.694 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : SC제일은행
    11-30 02:10:06.694 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : STX남산타워
    11-30 02:10:06.694 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 기독교대한감리회유지재단
    11-30 02:10:06.704 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 기종빌딩
    11-30 02:10:06.704 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남정개발주식회사
    11-30 02:10:06.704 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종근당빌딩개방화장실
    11-30 02:10:06.714 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 별정우체국개방화장실
    11-30 02:10:06.714 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 풍림VIP개방화장실
    11-30 02:10:06.724 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종로1번가빌딩개방화장실
    11-30 02:10:06.724 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충정빌딩개방화장실
    11-30 02:10:06.724 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 피어리스개방화장실
    11-30 02:10:06.734 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 삼창빌딩개방화장실
    11-30 02:10:06.744 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 충무로타워빌딩개방화장실
    11-30 02:10:07.644 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종각역
    11-30 02:10:07.714 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 피자헛(종로3가)개방화장실
    11-30 02:10:07.714 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : KTF남영점개방화장실
    11-30 02:10:07.774 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : KFC광화문점개방화장실
    11-30 02:10:08.084 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 인송빌딩개방화장실
    11-30 02:10:08.094 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원앞역
    11-30 02:10:08.254 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남영역
    11-30 02:10:08.254 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원운동장옆공중화장실
    11-30 02:10:08.264 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서대문역
    11-30 02:10:08.274 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 파파이스충무로점개방화장실
    11-30 02:10:08.274 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 대림정개방화장실
    11-30 02:10:08.284 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 공덕1-1 공영주차장(구)
    11-30 02:10:08.294 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 광화문빌딩(구)
    11-30 02:10:08.464 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 풍산빌딩개방화장실
    11-30 02:10:08.464 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 맥도날드(종로1가)개방화장실
    11-30 02:10:08.484 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남영빌딩개방화장실
    11-30 02:10:08.494 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 캠퍼스프라자개방화장실
    11-30 02:10:08.494 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 숭례문수입상가운영회개방화장실
    11-30 02:10:08.504 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : KFC서소문점개방화장실
    11-30 02:10:08.504 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동화빌딩개방화장실
    11-30 02:10:08.534 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 임광토건주식회사
    11-30 02:10:08.534 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창운동장
    11-30 02:10:08.534 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 칠보물산
    11-30 02:10:08.654 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 금세기빌딩
    11-30 02:10:08.654 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 정경빌딩
    11-30 02:10:08.664 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 우리빌딩
    11-30 02:10:08.774 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 도곡역
    11-30 02:10:08.774 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 버거킹명동본점개방화장실
    11-30 02:10:08.774 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지로3구역
    11-30 02:10:08.774 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 씨티그룹
    11-30 02:10:08.774 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 진고개개방화장실
    11-30 02:10:08.924 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 정동근린공원공중화장실
    11-30 02:10:08.924 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효창공원기념식수지옆공중화장실
    11-30 02:10:08.934 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 홍파우편취급소
    11-30 02:10:08.934 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 카톨릭회관무인자동화장실
    11-30 02:10:08.944 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 명동주민자치센터
    11-30 02:10:08.944 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 광화문우체국
    11-30 02:10:08.954 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종로3가치안센터
    11-30 02:10:08.954 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종로1234가주민센터
    11-30 02:10:08.964 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 을지로동주민센터
    11-30 02:10:09.004 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 중림동주민센터
    11-30 02:10:09.004 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 인사동공중화장실
    11-30 02:10:09.014 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 남영동주민센터
    11-30 02:10:09.034 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 용문동주민센터
    11-30 02:10:09.044 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 청파동주민센터
    11-30 02:10:09.054 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 청파주유소화장실
    11-30 02:10:09.054 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 조선일보무인자동화장실
    11-30 02:10:09.054 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 종각제일은행무인자동화장실
    11-30 02:10:09.064 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 아현시장무인자동화장실
    11-30 02:10:09.064 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 소공동주민센터
    11-30 02:10:09.074 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 전쟁기념관
    11-30 02:10:09.084 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 정안빌딩
    11-30 02:10:09.084 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울시티타워
    11-30 02:10:09.084 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 정석힉원
    11-30 02:10:09.094 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 광일빌딩개방화장실
    11-30 02:10:09.094 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 청계상가개방화장실
    11-30 02:10:09.654 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한국YMCA
    11-30 02:10:09.654 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 서울센터빌딩
    11-30 02:10:09.664 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)부영
    11-30 02:10:09.664 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)사보이호텔
    11-30 02:10:09.754 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 필동주유소화장실
    11-30 02:10:09.764 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 피자헛(관철점)개방화장실
    11-30 02:10:09.764 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 코오롱빌딩
    11-30 02:10:09.864 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한성엘시아이(주)
    11-30 02:10:09.874 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한전산업개발(주)
    11-30 02:10:09.884 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 하나은행다동센터
    11-30 02:10:09.894 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 동아빌딩개방화장실
    11-30 02:10:09.994 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한국정보사회진흥원개방화장실
    11-30 02:10:10.014 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 시그너스개방화장실
    11-30 02:10:10.014 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)화산테크
    11-30 02:10:10.124 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 한화건설
    11-30 02:10:10.144 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 디에스디엘주식회사
    11-30 02:10:10.144 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 롯데백화점
    11-30 02:10:10.154 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 맵스자산운영(주)
    11-30 02:10:10.154 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)배재학당 동관
    11-30 02:10:10.174 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 부림빌딩
    11-30 02:10:10.214 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 미검학원
    11-30 02:10:10.224 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 매일경제신문사
    11-30 02:10:10.234 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 메사
    11-30 02:10:10.234 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 명동센트럴빌딩
    11-30 02:10:10.234 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 세인빌딩개방화장실
    11-30 02:10:10.234 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : KFC종로점개방화장실
    11-30 02:10:10.234 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 저동B/D
    11-30 02:10:10.244 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 태평빌딩
    11-30 02:10:10.244 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 민들레영토개방화장실
    11-30 02:10:10.264 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 일진빌딩
    11-30 02:10:10.264 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 재능빌딩
    11-30 02:10:10.264 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 영풍빌딩개방화장실
    11-30 02:10:10.274 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 현대해상화재보험(주)
    11-30 02:10:10.274 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 홍덕빌딩
    11-30 02:10:10.284 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : HSBC빌딩
    11-30 02:10:10.284 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 시네마정동개방화장실
    11-30 02:10:10.284 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 신민상호저축은행개방화장실
    11-30 02:10:10.284 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 엠 플라자
    11-30 02:10:10.284 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : MIES빌딩
    11-30 02:10:10.284 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 가든플레이스개방화장실
    11-30 02:10:10.284 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 4.19도서관개방화장실
    11-30 02:10:10.294 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 극동빌딩개방화장실
    11-30 02:10:10.304 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 인제대서울백병원개방화장실
    11-30 02:10:10.344 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : (주)삼부토건
    11-30 02:10:10.364 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 효성인텔리안개방화장실
    11-30 02:10:10.364 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 고려아카데미개방화장실
    11-30 02:10:10.364 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 배재빌딩
    11-30 02:10:10.374 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 공금옥
    11-30 02:10:10.374 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 광학빌딩
    11-30 02:10:10.384 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 영빈빌딩
    11-30 02:10:10.424 14732-15527/com.example.jaehyukshin.welcomeseoulloreview V/test: 화장실 : 초동주유소화장실
    11-30 02:10:10.624 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 대림상가노상공영주차장(구)
    11-30 02:10:13.694 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 미근동노외(시)
    11-30 02:10:13.944 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 북아현 가구단지(구)
    11-30 02:10:13.994 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 삼풍상가 노상 공영주차장(구)
    11-30 02:10:14.104 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 새문안로2길(노상주차장)(시)
    11-30 02:10:14.874 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 서계동공영주차장(구)
    11-30 02:10:14.904 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 서린노외(글로벌센터)주차장(시)
    11-30 02:10:14.964 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 서울스퀘어빌딩앞 이륜차 전용주차장(시)
    11-30 02:10:15.034 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 세운상가밑(구)
    11-30 02:10:15.084 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 손기정체육공원 공영주차장(구)
    11-30 02:10:16.274 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 중림종합복지센터 부설주차장(구_중림(제5))(구)
    11-30 02:10:16.414 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 영국대사관 옆 노상 공영주차장(구)
    11-30 02:10:16.544 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 용문동주차장(구)
    11-30 02:10:16.544 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 용산2가소월주차장(구)
    11-30 02:10:16.704 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 이태원2동 공영주차장(구)
    11-30 02:10:16.704 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 이화여고 앞 노상 공영주차장(구)
    11-30 02:10:17.834 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 종각(구)
    11-30 02:10:19.034 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 중앙우체국옆 이륜자동차주차장(구)
    11-30 02:10:19.374 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 청소년회관 뒤 노상 공영주차장(구)
    11-30 02:10:19.384 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 청파동1마을공원공영주차장(구)
    11-30 02:10:19.384 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 청파동청사(구)
    11-30 02:10:19.384 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 초동 공영주차장(구)
    11-30 02:10:19.404 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 충현동 제1거주자우선주차장(구)
    11-30 02:10:19.404 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 코오롱빌딩옆 노상공영주차장(구)
    11-30 02:10:19.424 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 탑골공원(구)
    11-30 02:10:19.574 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 한국관광공사옆 노상공영주차장(구)
    11-30 02:10:19.614 14732-15528/com.example.jaehyukshin.welcomeseoulloreview V/test: 주차장 : 한미빌딩옆(구)




    #Xml 파싱


    1
    2
    3
    4
    5
    6
    7
    String url = "http://openapi.seoul.go.kr:8088/인증키/xml/SearchPublicToiletPOIService/" + i + "/" + (i + 999+ "/";
    XmlPullParserFactory factory = XmlPullParserFactory.newInstance();
    XmlPullParser parser = factory.newPullParser();
    URL xmlUrl = new URL(url);
    xmlUrl.openConnection().getInputStream();
    parser.setInput(xmlUrl.openStream(), "utf-8");
    int eventType = parser.getEventType();

    cs
    공공데이터 Open API url로 연결해서 XmlPullParser parser로 파싱할 xml 파일을 가져온다.
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
                        while (eventType != XmlPullParser.END_DOCUMENT) {
     
                            if (eventType == XmlPullParser.START_TAG) {
                                tag_name = parser.getName();
                                if (tag_name.equals("FNAME"| tag_name.equals("ANAME"| tag_name.equals("Y_WGS84"| tag_name.equals("X_WGS84"))
                                    bSet = true;
                            } else if (eventType == XmlPullParser.TEXT) {
                                if (bSet) {
                                    String data = parser.getText();
                                    switch (tag_name) {
                                        case "FNAME":
                                            publicToiletVO.setToiletName(data);
                                            break;
                                        case "ANAME":
                                            publicToiletVO.setToiletCategory(data);
                                            break;
                                        case "X_WGS84":
                                            publicToiletVO.setToiletLongitude(data);
                                            break;
                                        case "Y_WGS84":
                                            publicToiletVO.setToiletLatitude(data);
                                            if (calculateCoordinates(publicToiletVO.getToiletLatitude(), publicToiletVO.getToiletLongitude())) {
                                                publicToiletVOArrayList.add(new PublicToiletVO(publicToiletVO.getToiletName(), publicToiletVO.getToiletCategory(), publicToiletVO.getToiletLatitude(), publicToiletVO.getToiletLongitude()));
                                                Log.v("test""화장실 : " + publicToiletVOArrayList.get(publicToiletVOArrayList.size() - 1).getToiletName());
                                            }
    //                                        publicToiletVOArrayList.add(new PublicToiletVO(publicToiletVO.getToiletName(), publicToiletVO.getToiletCategory(), publicToiletVO.getToiletLatitude(), publicToiletVO.getToiletLongitude()));
    //                                        Log.v("test", "화장실 : " + publicToiletVOArrayList.get(publicToiletVOArrayList.size() - 1).getToiletName());
                                            break;
                                    }
                                    bSet = false;
                                }
                            } else if (eventType == XmlPullParser.END_TAG) {
                            }
                            eventType = parser.next();
                        }
    cs

    while로 xml 형태의 공공데이터를 훑는다.

    eventType 태그형태를 아래와 같은 네 가지로 나눠서 xml파일을 훑는다.

    xml파일 마지막 태그일 때까지 계속 내려가면서, 시작하는 태그인지 끝나는 태그인지, 태그 안의 내용인지 파악을 할 수 있다.

    그래서 시작하는 태그일 경우, 원하는 정보의 이름을 가진 태그인지 확인을 하고,

    원하는 정보이면 태그 안의 내용을 가져오고, 원하지 않는 정보이면 넘어가는 흐름이다.


    화장실 이름, 카테고리, 위도, 경도 값과 같이 원하는 정보를 받아오면 바로바로 Value Object 한 객체 안에 설정해준다.

    공공데이터 xml 파일 출력 형태를 확인해보면, 경도 값을 받아오는 태그가 화장실 하나의 정보를 받아오는 마지막 정보이기 때문에,

    경도 값을 받아오는 동시에 publicToiletVOArrayList에 add를 해준다

    START_TAG <시작태그>
    An XML start tag was read. 
    TEXT <>태그 안의 내용</>
    Text content was read; the text content can be retrieved using the getText() method. (when in validating mode next() will not report ignorable whitespace, use nextToken() instead)
    END_TAG </종료태그>
    An end tag was read
    END_DOCUMENT XML 파일 마지막
    No more events are available





    #Log 출력값 확인

    샘플 앱을 실행시켜보면 아래와 같이 Log가 찍히는 것을 확인할 수 있다.





    #샘플 앱 구동 확인




    #예제 코드는 Github에서 볼 수 있습니다




    # 참고 사이트) 

    AsyncTask : 

    http://sjava.net/2015/01/asynctask%EC%99%80-%EA%B0%99%EC%9D%B4-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94-progressdialog%EB%A5%BC-%EC%82%AC%EC%9A%A9%ED%95%B4%EC%84%9C-%ED%83%9C%EC%8A%A4%ED%81%AC%EB%A5%BC-%EB%B0%94%EB%A1%9C/


    http://corej21.tistory.com/38


    http://itmining.tistory.com/7


    http://mailmail.tistory.com/12


    https://developer.android.com/reference/android/os/AsyncTask.html




    Xml Parsing : 


    http://www.hanyang.or.kr/board_drvd94/241


    https://m.blog.naver.com/PostView.nhn?blogId=angkswnstn&logNo=220605498546&proxyReferer=https%3A%2F%2Fwww.google.co.kr%2F