xml 파싱 - 날씨 예제 안드로이드

 

 

전국 날씨 예보를 조회하는 간단한 예제이다.

xml 파싱에 대해서 공부해 보면서 만들어 봤다.

안드로이드에서는 모바일 특성상 무거운 DOM 파싱은 잘 안쓰는 것 같다.

대신 안드로이드에서는 SAX와 비슷한 XmlPullParser라는 파서를 지원한다는 것을 알았다.

이 XmlPullParser를 사용하여 간단한 날씨 정보를 파싱해서 화면에 출력해 보았다.

 

안드로이드 xml 파싱방법에 대한 설명

http://blog.naver.com/justsk2002/150094142053  참조

 

더 자세한 설명은 검색하면 많이 나오더라..ㅋ

 

1. XML 파일 요청

http://www.kma.go.kr/XML/weather/sfc_web_map.xml 요청 결과 (기상청에서 제공해준다)

  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    - <current xmlns="current">
    - <weather year="2010" month="11" day="18" hour="15">
         <local stn_id="90" icon="01" desc="맑음" ta="11.9">속초</local> 
         <local stn_id="95" icon="01" desc="맑음" ta="10.4">철원</local> 
         <local stn_id="98" icon="01" desc="맑음" ta="11.4">동두천</local> 
         <local stn_id="99" icon="01" desc="맑음" ta="11.9">문산</local> 
         <local stn_id="100" icon="01" desc="맑음" ta="9.0">대관령</local> 
         <local stn_id="101" icon="01" desc="맑음" ta="10.4">춘천</local> 
         <local stn_id="102" icon="01" desc="맑음" ta="10.2">백령도</local> 
         <local stn_id="104" icon="01" desc="맑음" ta="11.8">북강릉</local> 
         <local stn_id="106" icon="01" desc="맑음" ta="12.7">동해</local> 
         <local stn_id="108" icon="01" desc="맑음" ta="11.2">서울</local> 
         <local stn_id="112" icon="01" desc="맑음" ta="11.7">인천</local>
  2.      .....
  3.      .....
      </weather>
    </current>

 

 

 

2. 소스파일 (.java)

  1.  //edtResult 전역 변수
      edtResult = (EditText) findViewById(R.id.result);
  2.   Button btn = (Button) findViewById(R.id.parse);
      btn.setOnClickListener(new Button.OnClickListener() {
       public void onClick(View v) {
        try {
         URL url = new URL(
           "http://www.kma.go.kr/XML/weather/sfc_web_map.xml");
  3.      XmlPullParserFactory factory = XmlPullParserFactory
           .newInstance();
         XmlPullParser parser = factory.newPullParser();
         parser.setInput(url.openStream(), "utf-8");
  4.      String Item = "";
         String ItemName = "";
         String ItemContents = "";
  5.      boolean bSet = false;
         int eventType = parser.getEventType();
         while (eventType != XmlPullParser.END_DOCUMENT) {
          switch (eventType) {
          case XmlPullParser.START_DOCUMENT:
           break;
          case XmlPullParser.END_DOCUMENT:
           break;
          case XmlPullParser.START_TAG:
           String tag = parser.getName();
  6.        if (tag.equals("local")) {
            ItemContents = "";
            String state = parser.getAttributeValue(null,
              "desc");
            String temperature = "섭씨";
            temperature += parser.getAttributeValue(null,
              "ta");
            temperature += "º";
  7.         ItemContents = state + " , " + temperature
              + "  ";
            bSet = true;
           }
           break;
          case XmlPullParser.END_TAG:
           break;
          case XmlPullParser.TEXT:
           if (bSet) {
            ItemName = "";
            String region = parser.getText();
            ItemName += region + "   - ";
            Item += ItemName + ItemContents;
            Item += "\n";
            bSet = false;
           }
           break;
          }
  8.       eventType = parser.next();
         }
         edtResult.setText(Item);
        } catch (Exception e) {
         Toast.makeText(v.getContext(), e.getMessage(), 0).show();
        }
       }
      });

 

 

 3. 결과 화면

 

 

 

 허접한 예제이지만 이번기회에 XML에 대해서 알게 되었다.

 참고로 예제는 안드로이드 프로그래밍 정복  책에 XML 관련 예제를 기본으로

 응용해서 만들어 보았다.

 

 

 

 

이 글은 스프링노트에서 작성되었습니다.


덧글

  • Robert 2019/06/13 12:13 # 삭제 답글

    Thanks so much for sharing this excellent info! I'm seeking forward to see much more posts!
  • William 2019/06/13 13:09 # 삭제 답글

    I really like your writing style, excellent info, thank you for putting up
  • Daniel 2019/06/17 23:11 # 삭제 답글

    I'm really impressed with your writing skills as well as with the layout on your blog. Is this a paid theme or did you customize it yourself? Anyway keep up the excellent quality writing, its rare to see a great blog like this one these days..
  • William 2019/06/18 21:05 # 삭제 답글

    on the other hand, you could find inexpensive features allow me to explain allow a topline model and you desire to create quilts just for your special Hermes Evelyne travelling bag include.
  • John 2019/06/19 08:12 # 삭제 답글

    There is clearly a bundle to realize about this. I suppose you made some good points in features also.
  • Mark 2019/06/19 15:36 # 삭제 답글

    Nice post. I was checking constantly this blog and I am impressed! Extremely useful information specially the last part
  • Michael 2019/06/21 20:34 # 삭제 답글

    What's up Jackson, if you are a new internet user then you have to visit daily this web site and read the updated content at at this place.
  • Michael 2019/06/22 04:47 # 삭제 답글

    I am no longer sure the place you're getting your info, but great topic. I needs to spend a while studying much more or understanding more. Thanks for wonderful info I was on the lookout for this info for my mission.
  • Michael 2019/06/23 18:51 # 삭제 답글

    whoah this blog is wonderful i like reading your articles.
  • Charles 2019/06/24 03:01 # 삭제 답글

    You have brought up a very excellent details , regards for the post.
  • Paul 2019/06/25 06:29 # 삭제 답글

    mometasone spray over counter
  • William 2019/06/25 21:24 # 삭제 답글

    It is also possible that Zynga's chosen advertising
  • Joseph 2019/06/27 20:13 # 삭제 답글

    Amoxicillin And Clavulanate 250mg With No Prescription in Indianapolis
  • Mark 2019/06/29 15:32 # 삭제 답글

    If you are going for best contents like myself, simply go to see this site all
  • Mark 2019/07/01 09:17 # 삭제 답글

    I really like your writing style, good information, regards for putting up
  • Thomas 2019/07/01 12:03 # 삭제 답글

    Really informative article post.Thanks Again. Awesome.
  • George 2019/07/02 00:53 # 삭제 답글

    Article Source a viral game app is not
  • John 2019/07/02 21:51 # 삭제 답글

    I'm pleased that I seen this website, precisely the proper information that I was trying to find!
  • Paul 2019/07/03 00:57 # 삭제 답글

    I have recently started a site, the info you provide on this website has helped me tremendously. Thanks for all of your time &amp work. The achievements of an organization are the results of the combined effort of each individual. by Vince Lombardi.
  • Robert 2019/07/04 17:48 # 삭제 답글

    Really great info can be found on site.
  • Mark 2019/07/05 23:48 # 삭제 답글

    Nice post. I was checking constantly this blog and I am impressed! Extremely useful information specially the last part
  • Thomas 2019/07/07 14:41 # 삭제 답글

    Keep working ,fantastic job!
  • Paul 2019/07/08 20:23 # 삭제 답글

    I'm seeking weblogs which all have fantastic guidance on what's popular and specifically what the top rated makeup is..
  • Donald 2019/07/13 03:51 # 삭제 답글

    Surely together with your thoughts here and that i adore your blog! Ive bookmarked it making sure that I can come back &amp read more inside the foreseeable future.
  • Donald 2019/07/15 20:48 # 삭제 답글

    Article Source a viral game app is not that much difficult.
  • James 2019/07/21 04:38 # 삭제 답글

    Awesome article post.Thanks Again. Much obliged.
  • Michael 2019/07/22 14:14 # 삭제 답글

    Really informative article post.Thanks Again. Awesome.
  • Richard 2019/07/24 20:46 # 삭제 답글

    Hey, you used to write amazing, but the last couple of posts have been kinda boring I miss your tremendous writings. Past couple of posts are just a little out of track! come on!
  • David 2019/07/25 07:49 # 삭제 답글

    Your style is really unique compared to other folks I've read stuff from.
  • George 2019/07/25 17:43 # 삭제 답글

    Hi! This is my first visit to your blog! We are a
  • Charles 2019/07/25 19:52 # 삭제 답글

    I got this website from my friend who told me concerning this web site and at the moment this time I am visiting this web page and reading very informative content here.
  • James 2019/07/26 05:58 # 삭제 답글

    Thanks so much for sharing this excellent info! I'm seeking forward to see much more posts!
  • Paul 2019/07/26 14:22 # 삭제 답글

    This website is mostly a walkby for all the info you wished about this and didnt know who to ask. Glimpse right here, and also youll undoubtedly uncover it.
  • Donald 2019/07/26 21:31 # 삭제 답글

    Have you ever considered about including
  • Daniel 2019/07/31 08:21 # 삭제 답글

    tretinoin chemotherapy
  • Daniel 2019/08/01 21:00 # 삭제 답글

    Mudbox is a software for 3D sculpting and painting which is developed
  • James 2019/08/02 13:08 # 삭제 답글

    I got what you intend, appreciate it for posting .Woh I am lucky to find this website through google. I was walking down the street wearing glasses when the prescription ran out. by Steven Wright.
  • Donald 2019/08/02 23:29 # 삭제 답글

    Hi Dear, are you in fact visiting this website daily, if so then you will definitely take fastidious knowledge.
  • Richard 2019/08/05 16:17 # 삭제 답글

    Thanks for any other informative web site. Where else may just I get that kind of information written in such an ideal way? I have a mission that I am just now operating on, and I have been on the look out for such information.
  • Paul 2019/08/05 18:28 # 삭제 답글

    An interesting dialogue is worth comment. I feel that you must write more on this topic, it won't be a taboo subject but typically people are not sufficient to speak on such topics. To the next. Cheers
  • William 2019/08/06 10:30 # 삭제 답글

    Say, you got a nice blog post. Really Cool.
  • David 2019/08/07 20:02 # 삭제 답글

    A megapolis megabucks gratuit failed to seem to cause waste materials in addition
  • Robert 2019/08/08 13:58 # 삭제 답글

    A big thank you for your article.Really thank you! Cool.
  • Robert 2019/08/09 12:43 # 삭제 답글

    Wow! This blog looks exactly like my old one! It's on a completely different topic but it has pretty much the same page layout and design. Excellent choice of colors!
  • Daniel 2019/08/10 03:42 # 삭제 답글

    It's very straightforward to find out any topic on net as compared to textbooks, as I found this article at this site.
  • Paul 2019/08/13 09:32 # 삭제 답글

    Wow! This could be one particular of the most useful blogs We've ever arrive across on this subject. Basically Wonderful. I'm also a specialist in this topic so I can understand your hard work.
  • Thomas 2019/08/13 15:20 # 삭제 답글

    Nice post. I was checking constantly this blog and I am impressed! Extremely useful information specially the last part
  • Richard 2019/08/13 21:06 # 삭제 답글

    Thanks for any other informative web site. Where else may just I get that kind of information written in such an ideal way? I have a mission that I am just now operating on, and I have been on the look out for such information.
  • William 2019/08/17 09:16 # 삭제 답글

    Ultimately, a dilemma that I'm passionate about. I have looked for data of this caliber for the previous various hours. Your internet site is greatly appreciated.
  • William 2019/08/18 05:09 # 삭제 답글

    Hi! Someone in my Myspace group shared this website with us so I came to look it over. I'm definitely loving the information. I'm bookmarking and will be tweeting this to my followers! Great blog and terrific design and style.
  • Charles 2019/08/18 13:44 # 삭제 답글

    Hey esto es un gran poste. Puedo utilizar una porcin en ella en mi sitio? Por supuesto ligara a su sitio as que la gente podra leer el artculo completo si ella quiso a. Agradece cualquier manera.
  • Paul 2019/08/21 06:19 # 삭제 답글

    Today, while I was at work, my sister stole my apple ipad and tested to see if it can survive a 30 foot drop, just so she can be a youtube sensation. My apple ipad is now destroyed and she has 83 views. I know this is entirely off topic but I had to share it with someone!
  • Charles 2019/08/22 08:27 # 삭제 답글

    Somebody necessarily lend a hand to make significantly posts I might state. This is the very first time I frequented your website page and thus far? I surprised with the analysis you made to make this actual publish incredible. Magnificent job!
  • George 2019/08/24 05:51 # 삭제 답글

    The data are part of an autumn of just about 16 targets in Lib Dem provide because of the 2010 commander selection, before Huhne scooped 46.5 with all the electionHermes kelly felix bags didn can far in order to move benefit
  • Michael 2019/08/24 16:40 # 삭제 답글

    Wow, wonderful blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your web site is excellent, as well as the content!
  • Mark 2019/08/28 02:02 # 삭제 답글

    I'm extremely impressed with your writing skills and also with the layout on your weblog. Is this a paid theme or did you modify it yourself? Either way keep up the excellent quality writing, it is rare to see a great blog like this one nowadays..
  • Paul 2019/08/28 21:07 # 삭제 답글

    I like this post, enjoyed this one thankyou for posting .
  • William 2019/08/30 02:09 # 삭제 답글

    If you are going for best contents like myself, simply go to see this site all
  • Mark 2019/09/02 09:56 # 삭제 답글

    Would you be taken with exchanging links?
  • Thomas 2019/09/02 23:20 # 삭제 답글

    Hey I am so excited I found your website, I really found you
  • Daniel 2019/09/06 08:43 # 삭제 답글

    I really like your writing style, good information, regards for putting up
  • Michael 2019/09/10 13:31 # 삭제 답글

    Okay this YouTube video is much enhanced than last one, this one has pleasant picture feature as well as audio.
  • David 2019/09/15 00:21 # 삭제 답글

    Hey! Do you know if they make any plugins to help with Search Engine Optimization? I'm trying to get my blog to rank for some targeted keywords but I'm not seeing very good gains. If you know of any please share. Many thanks!
  • David 2019/09/16 00:41 # 삭제 답글

    I am really enjoying the themedesign of your blog. Do you ever run into any browser compatibility problems? A handful of my blog readers have complained about my website not operating correctly in Explorer but looks great in Chrome. Do you have any advice to help fix this issue?
  • Joseph 2019/09/17 14:51 # 삭제 답글

    You have brought up a very excellent details , regards for the post.
  • Daniel 2019/09/18 14:26 # 삭제 답글

    This kind of game gives a real experience of building a farm and planting trees.
  • Robert 2019/09/22 01:25 # 삭제 답글

    hi!,I really like your writing so so much! proportion we communicate more about your post on AOL? I need a specialist on this space to unravel my problem. Maybe that's you! Looking ahead to see you.
  • Mark 2019/09/26 20:56 # 삭제 답글

    Good blog! I really love how it is easy on my eyes and the data are well written. I am wondering how I could be notified whenever a new post has been made. I have subscribed to your feed which must do the trick! Have a nice day!
  • Donald 2019/09/30 12:45 # 삭제 답글

    requirements. Recognitions pro suggestion like operative, balanced, explanatory as well as moreover exuberance thinkings about this issue to Gloria.
  • Paul 2019/10/09 06:18 # 삭제 답글

    Thanks for another magnificent post. Where else may just anybody get that kind of info in such a perfect manner of writing? I have a presentation next week, and I'm at the look for such information.
  • Thomas 2019/10/11 17:56 # 삭제 답글

    The principle isn't to artificially turn out to be effective,
  • William 2019/10/14 13:09 # 삭제 답글

    I have not checked in here for a while since I thought it was getting boring, but the last few posts are good quality so I guess I'll add you back to my daily bloglist. You deserve it my friend
  • Robert 2019/10/15 11:26 # 삭제 답글

    Okay this YouTube video is much enhanced than last one, this one has pleasant picture feature as well as audio.
  • James 2019/10/16 08:31 # 삭제 답글

    Hello, Neat post. There is a problem with your website in web explorer, may check this IE still is the market leader and a large component of folks will leave out your magnificent writing because of this problem.
  • Richard 2019/10/16 16:52 # 삭제 답글

    Thanks for another magnificent post. Where else may just anybody get that kind of info in such a perfect manner of writing? I have a presentation next week, and I'm at the look for such information.
  • John 2019/10/17 21:56 # 삭제 답글

    What's up Jackson, if you are a new internet user then you have to visit daily this web site and read the updated content at at this place.
  • George 2019/10/18 09:23 # 삭제 답글

    Its like you read my mind! You seem to know a lot about this, like you wrote the book in it or something. I think that you can do with a few pics to drive the message home a bit, but instead of that, this is fantastic blog. A fantastic read. I will definitely be back.
  • Thomas 2019/10/21 09:51 # 삭제 답글

    very nice post, i certainly love this web site, keep on it
  • Michael 2019/10/21 10:08 # 삭제 답글

    I like what you guys are up too. Such smart work and reporting! Carry on the excellent works guys Ive incorporated you guys to my blogroll. I think it'll improve the value of my website
  • Joseph 2019/10/23 16:09 # 삭제 답글

    Pretty great post. I just stumbled upon your blog and wanted
  • George 2019/10/23 21:27 # 삭제 답글

    Excellent blog here! Also your web site loads up very fast! What web host are you using? Can I get your affiliate link to your host? I wish my website loaded up as quickly as yours lol
  • James 2019/10/25 06:34 # 삭제 답글

    Hello, Neat post. There's a problem with your web site in web explorer, may test thisK IE still is the market leader and a large component to people will leave out your magnificent writing due to this problem.
  • William 2019/10/26 03:25 # 삭제 답글

    Hello to all, the contents existing at this site are in fact remarkable for people knowledge, well, keep up the nice work fellows.
  • Thomas 2019/10/26 15:19 # 삭제 답글

    Howdy! Would you mind if I share your blog with my twitter group? Theres lots of people that I believe would really enjoy your content. Please let me know. Thanks
  • Paul 2019/10/26 23:36 # 삭제 답글

    you may have an important weblog here! would you prefer to make some invite posts on my blog?
  • Donald 2019/10/27 16:22 # 삭제 답글

    Someone necessarily help to make seriously articles I'd state. This is the very first time I frequented your website page and up to now? I surprised with the research you made to create this particular publish extraordinary. Fantastic process!
  • Paul 2019/10/28 03:16 # 삭제 답글

    I do believe all of the ideas you've offered for your post. They are really convincing and will definitely work. Still, the posts are very quick for newbies. May just you please extend them a little from next time? Thank you for the post.
  • George 2019/10/30 22:04 # 삭제 답글

    Hi to all, how is everything, I think every one is getting more from this site, and your views
  • John 2019/10/31 02:47 # 삭제 답글

    hello!,I like your writing very a lot! proportion we keep in touch more approximately your article on AOL? I require a specialist on this area to unravel my problem. May be that's you! Looking forward to look you.
  • Joseph 2019/11/01 23:36 # 삭제 답글

    Aw, this was a very nice post. In thought I want to put in writing like this moreover taking time and actual effort to make an excellent article but what can I say I procrastinate alot and not at all seem to get something done.
  • Paul 2019/11/02 22:48 # 삭제 답글

    Hi. Only wanted to ask a quick issue. Now i am
  • Donald 2019/11/03 15:21 # 삭제 답글

    That alone wwas an egregious oversight on thheir own part, since
  • Thomas 2019/11/05 04:55 # 삭제 답글

    I gotta preferred this web web page it appears very valuable quite advantageous
  • Thomas 2019/11/05 08:35 # 삭제 답글

    Very informative post.Really thank you! Awesome.
  • Charles 2019/11/08 22:26 # 삭제 답글

    In my friend's web blogs they already have provided me on the website rolls, but mine usually is located at the bottom on the listing and does not selection when I place as it does for some individuals. Is this a placing that I have to difference or is this a choice they may have considered? .
  • Daniel 2019/11/13 10:58 # 삭제 답글

    Please add more movies related to cooking if you have, because I wish for to learn more and more about all recipes of cooking.
  • Joseph 2019/11/16 12:00 # 삭제 답글

    is elocon a steroid cream
  • Paul 2019/11/17 04:10 # 삭제 답글

    I just ought to tell you which you have written an exceptional and distinctive post that I really enjoyed reading. Im fascinated by how nicely you laid out your material and presented your views. Thank you.
  • Michael 2019/11/18 20:49 # 삭제 답글

    I will immediately grab your rss feed as I can not find your email subscription link or enewsletter service. Do you have any? Kindly let me know so that I could subscribe. Thanks.
  • David 2019/11/19 14:30 # 삭제 답글

    Link exchange is nothing else but it is just placing the other persons weblog link on your page at proper place and other person will also do similar in support of you.
댓글 입력 영역
◀ 다음덧글    이전덧글 ▶

구글와이드