android XMl 解析神奇xstream 一: 解析android項目中 asset 檔案夾 下的 aa.xml 檔案

來源:互聯網
上載者:User

標籤:

1、下載工具 xstream

  下載最新版本地址: https://nexus.codehaus.org/content/repositories/releases/com/thoughtworks/xstream/

  下載完成後 把jar包匯入到自己的android項目中 

2、asset 檔案夾 下的 aa.xml 檔案

<?xml version="1.0" encoding="UTF-8"?>
<product>   
<name>jike</name> 
<age>30</age>
</product>

 

 

3、實體

 

package com.android10;public class Product {    private String name ;        private String age  ;    public String getName() {        return name;    }    public void setName(String name) {        this.name = name;    }    public String getAge() {        return age;    }    public void setAge(String age) {        this.age = age;    }}

 

4、實現代碼

package com.android10;import java.io.IOException;import java.io.InputStream;import android.app.Activity;import android.os.Bundle;import com.thoughtworks.xstream.XStream;public class MainActivity extends Activity {    @Override    public void onCreate(Bundle savedInstanceState)  {        super.onCreate(savedInstanceState);        setContentView( R.layout.activity_main );        //得到資源中的資料流          String fileName = "aa.xml" ; //檔案名稱字           try {            InputStream in = getResources().getAssets().open( fileName ) ;            XStream xstream = new XStream() ;                   xstream.alias( "product" , Product.class );                   Product product = (Product) xstream.fromXML( in );            System.out.println("sss " + product.getName() + product.getAge()  );        } catch (IOException e) {            e.printStackTrace();        }       }}

5、運行結果
   sss jike30

 

6、項目

   http://download.csdn.net/detail/yanzi2015/8797641

 

android XMl 解析神奇xstream 一: 解析android項目中 asset 檔案夾 下的 aa.xml 檔案

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.