Android讀取XML檔案

來源:互聯網
上載者:User
package com.example.atest4;import java.io.IOException;import org.xmlpull.v1.XmlPullParserException;import android.os.Bundle;import android.app.Activity;import android.content.res.XmlResourceParser;import android.view.Menu;import android.view.View;import android.widget.Button;public class MainActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);Button bn1 = (Button)findViewById(R.id.button1);bn1.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {// TODO Auto-generated method stubXmlResourceParser xrp = getResources().getXml(R.xml.books);try{StringBuffer sb = new StringBuffer("");while(xrp.getEventType() != XmlResourceParser.END_DOCUMENT){if(xrp.getEventType() == XmlResourceParser.START_TAG){String tagName = xrp.getName();System.out.println(tagName);if(tagName.equals("book")){String bookPrice = xrp.getAttributeValue(null, "price");System.out.println(bookPrice);String bookdate = xrp.getAttributeValue(1);System.out.println(bookdate);System.out.println(xrp.nextText());}if(tagName.equals("note")){System.out.println(xrp.nextText());}}xrp.next();}}catch(XmlPullParserException e){e.printStackTrace();}catch(IOException e){e.printStackTrace();}}});}@Overridepublic boolean onCreateOptionsMenu(Menu menu) {// Inflate the menu; this adds items to the action bar if it is present.getMenuInflater().inflate(R.menu.main, menu);return true;}}


<?xml version="1.0" encoding="utf-8"?><books>    <book price ="90" outdate="2008">abcdefg</book>    <book2>        <note>dfds</note>        <note>dfds1</note>        <note>dfds2</note>    </book2>    <book price ="88" outdate="2011">dafdd</book>    <book2>        <note>dfds3</note>    </book2>    <book price ="77" outdate="2012">abcddafdefg</book>    <book price ="89" outdate="2002">adf</book>    <book2>        <note>dfds</note>    </book2></books><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:id="@+id/LinearLayout1"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical"    android:paddingBottom="@dimen/activity_vertical_margin"    android:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"    tools:context=".MainActivity" >    <TextView        android:id="@+id/textView1"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="@string/hello_world" />    <Button        android:id="@+id/button1"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="Button" /></LinearLayout>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.