码迷,mamicode.com
首页 > 其他好文 > 详细

Xml 解析 PullParser

时间:2014-08-11 15:04:12      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:android   xml   

public static UpdateInfo getUpdateInfos(InputStream is)
{
	try
	{
		XmlPullParser parser = Xml.newPullParser();
		parser.setInput(is, "UTF-8");
		int type = parser.getEventType();
		UpdateInfo info = new UpdateInfo();

		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.setApkurl(path);
				}
				break;
			}
			type = parser.next();
		}
		return info;
	}
	catch (Exception e)
	{
		e.printStackTrace();
		return null;
	}
}

Xml 解析 PullParser,布布扣,bubuko.com

Xml 解析 PullParser

标签:android   xml   

原文地址:http://blog.csdn.net/feecooling/article/details/38492271

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!