《Android学习指南》入门 开发 教程第二部分_图文.doc
文本预览下载声明
《Android学习指南》入门 开发 教程第二部分_图文
1. package basic.android.xml.sax; 2.
3. import org.xml.sax.Attributes;
4. import org.xml.sax.SAXException;
5. import
org.xml.sax.helpers.DefaultHandler;
6. import android.util.Log;
7.
8. public class WeatherXMLHandler extends DefaultHandler {
9.
10. // 明日天气预报Bean
11. TomorrowWeatherVO
tomorrowWeatherVO;
12.
13. // 记录出现次数
14. int findCount = 0;
15.
16. // 默认构造方法
17. public WeatherXMLHandler() {
18. super();
19. }
20.
21. // 构造方法
显示全部