`

sax 解析 xml

    博客分类:
  • Java
阅读更多
HandlerXML.java--处理xml

package cn.com.songjy.xml;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

public class HandlerXML extends DefaultHandler {

	List<ForecastCondition> forecast_conditions = new ArrayList<ForecastCondition>();
	ForecastCondition forecast_condition = new ForecastCondition();
	Map<String, Object> forecast_information = new HashMap<String, Object>();
	Map<String, Object> current_condition = new HashMap<String, Object>();
	boolean current_condition_flag = false;
	boolean forecast_information_flag = false;
	boolean forecast_conditions_flag = false;

	public List<ForecastCondition> getForecastConditions() {
		return forecast_conditions;
	}
	
	
	public Map<String, Object> getForecastInformation(){
		return forecast_information;
	}
	
	public Map<String, Object> getCurrentConditions(){
		return current_condition;
	}

	@Override
	public void startElement(String uri, String localName, String qName,
			Attributes attributes) throws SAXException {
		
		if("forecast_information".equals(qName))
			forecast_information_flag = true;
		
		if(forecast_information_flag && "city".equals(qName))
			forecast_information.put("city", attributes.getValue("data"));
		if(forecast_information_flag && "forecast_date".equals(qName))
			forecast_information.put("forecast_date", attributes.getValue("data"));
		if(forecast_information_flag && "current_date_time".equals(qName))
			forecast_information.put("current_date_time", attributes.getValue("data"));
		
		if("current_conditions".equals(qName))
			current_condition_flag = true;
		
		if(current_condition_flag && "condition".equals(qName))
			current_condition.put("condition", attributes.getValue("data"));
		if(current_condition_flag && "temp_f".equals(qName))
			current_condition.put("temp_f", attributes.getValue("data"));
		if(current_condition_flag && "temp_c".equals(qName))
			current_condition.put("temp_c", attributes.getValue("data"));
		if(current_condition_flag && "humidity".equals(qName))
			current_condition.put("humidity", attributes.getValue("data"));
		if(current_condition_flag && "icon".equals(qName))
			current_condition.put("icon", attributes.getValue("data"));
		if(current_condition_flag && "wind_condition".equals(qName))
			current_condition.put("wind_condition", attributes.getValue("data"));
		
		if("forecast_conditions".equals(qName))
			forecast_conditions_flag = true;
		
		if (forecast_conditions_flag && "day_of_week".equals(qName)) {
			String week = attributes.getValue("data");
			forecast_condition = new ForecastCondition();//不可省略,否则将永远是最后一条记录
			forecast_condition.setWeek(week);
		}
		
		if (forecast_conditions_flag && "low".equals(qName)) {
			int low = Integer.parseInt(attributes.getValue("data"));
			forecast_condition.setLow(low);

		}
		if (forecast_conditions_flag && "high".equals(qName)) {
			int hight = Integer.parseInt(attributes.getValue("data"));
			forecast_condition.setHight(hight);

		}
		
		if (forecast_conditions_flag && "icon".equals(qName)) {
			String icon = attributes.getValue("data");
			forecast_condition.setIcon(icon);

		}
		
		if (forecast_conditions_flag && "condition".equals(qName)) {
			String condition = attributes.getValue("data");
			forecast_condition.setCondition(condition);

		}

	}

	@Override
	public void endElement(String uri, String localName, String qName)
			throws SAXException {
		
		if("current_conditions".equals(qName))
			current_condition_flag = false;
		if("forecast_information".equals(qName))
			forecast_information_flag = false;
		if("forecast_conditions".equals(qName))
			forecast_conditions_flag = false;
		
		if ("forecast_conditions".equals(qName)) {
			forecast_conditions.add(forecast_condition);
		}
	}

}



ParsersXML.java--显示处理结果

package cn.com.songjy.xml;

import java.io.IOException;
import java.io.StringReader;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;

public class ParsersXML {

	public static void main(String[] args) {
		Map<String, Object> map = readXml();
		List<ForecastCondition> forecastConditions = (List<ForecastCondition>) map.get("forecastConditions");
		Map<String, Object> forecast_information = (Map<String, Object>) map.get("forecast_information");
		Map<String, Object> current_condition = (Map<String, Object>) map.get("current_condition");
		
		System.out.println("**********预测数据**********");
		for (ForecastCondition weather : forecastConditions) {
			System.out.println(weather.toString());
		}
		
		System.out.println("**********预报信息**********");
		
		for (String key : forecast_information.keySet()) {
			System.out.println(forecast_information.get(key).toString());
		}
		
		System.out.println("**********当天数据**********");
		for (String key : current_condition.keySet()) {
			System.out.println(current_condition.get(key).toString());
		}
		
	}

	public static Map<String, Object> readXml() {
		Map<String, Object> map = new HashMap<String, Object>();
		SAXParserFactory factory = SAXParserFactory.newInstance();
		try {
			SAXParser parser = factory.newSAXParser();
			InputSource inputSource = new InputSource(new StringReader(getWeatherAsString()));
			HandlerXML handlerXML = new HandlerXML();
			try {
				parser.parse(inputSource, handlerXML);
				map.put("forecastConditions", handlerXML.getForecastConditions());
				map.put("forecast_information", handlerXML.getForecastInformation());
				map.put("current_condition", handlerXML.getCurrentConditions());
				return map;
			} catch (IOException e) {
				e.printStackTrace();
			}
		} catch (ParserConfigurationException e) {
			e.printStackTrace();
		} catch (SAXException e) {
			e.printStackTrace();
		}
		return null;
	}
	
	//调用公开API获取XML数据
	public static String getWeatherAsString() {
		String strUrl = "http://www.google.com/ig/api?hl=zh-cn&weather=Ganzhou,Jiangxi";
		HttpGet getRequest = new HttpGet(strUrl);
		DefaultHttpClient client = new DefaultHttpClient();
		try {
			HttpResponse response = client.execute(getRequest);
			if (response.getStatusLine().getStatusCode() == 200) {
				HttpEntity entity = response.getEntity();
				return EntityUtils.toString(entity);
			}
		} catch (ClientProtocolException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
		return null;
	}
}



执行效果如下:

**********预测数据**********
预测数据 [week=周四, hight=33, low=24, icon=/ig/images/weather/thunderstorm.gif, condition=雷阵雨]
预测数据 [week=周五, hight=32, low=24, icon=/ig/images/weather/chance_of_storm.gif, condition=可能有暴风雨]
预测数据 [week=周六, hight=31, low=24, icon=/ig/images/weather/chance_of_storm.gif, condition=可能有暴风雨]
预测数据 [week=周日, hight=31, low=24, icon=/ig/images/weather/chance_of_storm.gif, condition=可能有暴风雨]
**********预报信息**********
2012-06-07 17:00:00 +0000
2012-06-07
Ganzhou, Jiangxi
**********当天数据**********
/ig/images/weather/mostly_cloudy.gif
湿度: 60%
88
风向: 西南、风速:3 米/秒
多云
31



ForecastCondition.java--对象

package cn.com.songjy.xml;

public class ForecastCondition {
	
	private String week;
	private int low;
	private int hight;
	private String icon;
	private String condition;

	@Override
	public String toString() {
		return "预测数据 [week=" + week + ", hight=" + hight
				+ ", low=" + low + ", icon=" + icon + ", condition=" + condition + "]";
	}

	public String getWeek() {
		return week;
	}

	public void setWeek(String week) {
		this.week = week;
	}

	public int getLow() {
		return low;
	}

	public void setLow(int low) {
		this.low = low;
	}

	public int getHight() {
		return hight;
	}

	public void setHight(int hight) {
		this.hight = hight;
	}

	public String getIcon() {
		return icon;
	}

	public void setIcon(String icon) {
		this.icon = icon;
	}

	public String getCondition() {
		return condition;
	}

	public void setCondition(String condition) {
		this.condition = condition;
	}

}



所需jar包可从附件下载

引自:http://www.2cto.com/kf/201204/127466.html
分享到:
评论

相关推荐

    SAX解析XML文件实例

    SAX解析XML文件的实例。一个项目同时用dom解析和sax解析xml文件貌似会报错,项目框架建一直是用sax和dom4j解析xml文件的。当我用dom解析xml文件。导入包后就报错识别不了xml文件的编码格式。于是做了一个sax解析xml...

    Sax解析XML文件解析

    **SAX解析XML的基本原理:** SAX解析器以流式的方式读取XML文档,当遇到文档的各个元素时,会触发相应的事件,如开始文档、开始元素、结束元素、字符数据等。程序员通过实现SAX解析器的回调接口来处理这些事件,从而...

    Java SAX解析Xml文档Demo

    本示例将详细解释如何在Java中使用SAX解析XML文档,并通过注释进行详细说明。 首先,我们需要引入SAX解析器的依赖库,通常这可以通过在项目构建配置中添加JAXB或Xerces实现来实现。 ```java // 引入必要的库,如...

    Servlet利用SAX解析XML文档

    本主题将深入探讨如何在Servlet中利用SAX解析XML文档。 首先,我们需要了解SAX解析的基本原理。SAX解析器不创建整个XML文档树,而是当遇到XML文档的各个部分(如元素、属性、文本等)时,触发相应的事件回调函数。...

    sax解析xml尤其是获取元素的值或者内容

    本文将深入探讨如何使用SAX解析XML并获取元素的值或内容。 首先,SAX解析器以流式方式读取XML文档,当遇到文档的不同部分时,会触发相应的事件,如开始文档、开始元素、结束元素等。开发者可以注册事件处理器来响应...

    Sax解析xml文件

    以下是一个使用SAX解析XML文件的基本步骤: 1. **创建解析器**: 首先,我们需要创建一个SAX解析器实例。在Java中,这通常通过`SAXParserFactory`类完成。设置解析器属性,然后调用`newSAXParser()`方法获取`...

    SAX解析XML实例

    总的来说,SAX解析XML是一种高效且灵活的方法,适用于处理大型XML文档。通过自定义事件处理器,我们可以根据业务需求定制解析逻辑,从而有效地解析和利用XML数据。在实际项目中,结合源码分析和工具使用,如IDE中的...

    Servlet利用SAX解析XML文档(新上传的有源码)

    Servlet利用SAX解析XML文档(新上传的有源码)Servlet利用SAX解析XML文档(新上传的有源码)Servlet利用SAX解析XML文档(新上传的有源码)Servlet利用SAX解析XML文档(新上传的有源码)Servlet利用SAX解析XML文档(新上传的有...

    sax解析xml

    下面我们将深入探讨SAX解析XML的相关知识点。 1. **SAX解析器的初始化**:在Java中,我们通常使用`org.xml.sax.parsers.SAXParserFactory`类来创建并配置SAX解析器。首先,我们需要实例化一个SAXParserFactory对象...

    android 使用Sax解析XML 源码实例

    下面是一个SAX解析XML的示例(有点长,因为详细注解了SAX事件处理的所有方法),SAX API中主要有四种处理事件的接口,它们分别是ContentHandler,DTDHandler, EntityResolver 和 ErrorHandler 。下面的例子可能...

    sax解析xml文件

    在本项目中,"saxloadxml"应该是实现了一个SAX解析XML文件的示例,旨在帮助开发者理解和应用SAX解析。 首先,我们需要理解SAX解析的基本原理。当解析器读取XML文件时,它会触发一系列的事件,如开始文档、结束文档...

    SAX解析XML

    **SAX解析XML详解** XML(eXtensible Markup Language)是一种用于标记数据的语言,广泛应用于数据交换、配置文件和Web服务等领域。SAX(Simple API for XML)是XML解析的一种方式,它采用事件驱动模型,以流式处理...

    sax解析xml本地读取xml

    标题“sax解析xml本地读取xml”指的是使用SAX解析器来读取和解析存储在本地文件系统中的XML文件。这种方式适用于处理那些无法一次性加载到内存中的大型XML文档,或者对于内存有限的环境。 SAX解析的基本工作原理...

    一个关于sax解析xml的demo

    这个"Project1231_001_XML_SAX"可能包含了一个简单的XML文件和对应的SAX解析示例代码,通过运行这个项目,开发者可以了解如何在实际应用中使用SAX解析XML数据,以及如何处理XML文档中的不同结构。学习和理解SAX解析...

    SAX解析XML源码

    本篇主要探讨的是SAX解析XML的源码实现。 SAX解析器是一种事件驱动的解析器,它不会一次性加载整个XML文档到内存,而是逐行读取,当遇到XML文档中的元素、属性、文本等时,会触发相应的回调函数。这种方式非常适合...

    sax解析xml实例

    本实例将通过SAX解析XML,帮助我们更好地理解和应用这一技术。 在SAX解析XML的过程中,主要涉及以下几个关键知识点: 1. **事件驱动模型**:SAX解析器在读取XML文档时,遇到每个元素、属性或文本节点时都会触发...

    android使用SAX解析xml

    - `xmlSAXPaserDemo`可能是一个包含示例代码的Android项目,用于演示如何实际使用SAX解析XML文件。 - 项目中可能包括网络请求模块、SAX解析器处理类以及展示解析结果的UI部分。 通过以上步骤,开发者可以在...

    SAX解析xml文件源码

    下面将详细介绍SAX解析XML文件的基本原理、工作流程以及在Android环境下如何实现。 **SAX解析的基本原理:** SAX解析器在读取XML文档时会触发一系列的事件,如开始文档、结束文档、开始元素、结束元素、字符数据等...

Global site tag (gtag.js) - Google Analytics