Android中xml解析–實現軟體升級功能

來源:互聯網
上載者:User

android中內建有pull解析器,所以我們一般都使用pull來解析。這裡解析一個最簡單的軟體升級的xml檔案,通過pull解析,擷取到軟體的版本號碼,和描述,還有,實現軟體的更新操作。

使用最常用的pull解析器來實現xml解析,實現軟體的升級功能!

1.xml檔案如下:

<?xml version="1.0" encoding="UTF-8"?><info>    <version>2.0</version>    <description>有新的版本了,趕快來下載吧!</description>    <path>http://xxx.xxxx.xx</path></info>

2.解析xml的業務bean

public class UpdateInfo {    private String version;    private String description;    private String path;    public String getVersion() {        return version;    }    public void setVersion(String version) {        this.version = version;    }    public String getDescription() {        return description;    }    public void setDescription(String description) {        this.description = description;    }    public String getPath() {        return path;    }    public void setPath(String path) {        this.path = path;    }}

3.開始解析xml檔案

/** * 擷取更新資訊 *  * @author piao *  */public class UpdateInfoProvider {    //解析xml檔案    public  static UpdateInfo getUpdateInfo(InputStream is) {        XmlPullParser parser = Xml.newPullParser();        UpdateInfo info = new UpdateInfo();        // 初始化解析器        try {            parser.setInput(is, "utf-8");            int type = parser.getEventType();            while (type != XmlPullParser.END_DOCUMENT) {                switch (type) {                case XmlPullParser.START_TAG:                    if ("version".equals(parser.getName())) {                        String version = parser.nextText();                        info.setVersion(version);                    } else if ("description".equals(parser.getName())) {                        String description = parser.nextText();                        info.setDescription(description);                    } else if ("path".equals(parser.getName())) {                        String path = parser.nextText();                        info.setPath(path);                    }                    break;                }                type = parser.next();            }            return info;        } catch (Exception e) {            // TODO Auto-generated catch block            e.printStackTrace();            return null;        }    }}

4.接受xml檔案返回的資料

try {            URL url=new URL(xxx);            HttpURLConnection conn=url.openConnection();            conn.setRequestMethod("GET");            //連線逾時時間            conn.setConnectTimeout(5000);            int code = conn.getResponseCode();            if(code==200){                InputStream is=conn.getInputStream();                UpdateInfo updateInfo=new UpdateInfo();                updateInfo=testxml.getUpdateInfo(is);                if(updateInfo!=null){                    //解析成功                }else{                    //解析失敗                }            }        } catch (Exception e) {            // TODO Auto-generated catch block            e.printStackTrace();        }
相關文章

聯繫我們

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