天气预报Dom解析(转)

view plain
  1. <span style="font-family:Arial, Verdana, sans-serif;color:#000000;"><span style="white-space: normal;"><span style="color:#000099;">  
  2. </span></span></span>  

DOM是用与平台无关和语言无关的方式表示XML文档的官方W3C标准,DOM是以层次结构组织的节点或信息片段的集合。DOM是基于树的,DOM相对SAX来说简单,耗内存...

本次学习目标:了解DOM解析XML ,并用DOM解析谷歌提供的天气 

谷歌提供的天气接口是 http://www.google.com/ig/api?hl=zh_CN&weather=wuhan   这个接口末尾是wuhan 即 "武汉" 的拼音,依次类推,北京的查询方式是把后面拼音换成beijing就行了,这个接口是查询武汉四天的天气。

根元素(Element)是 xml_api_reply 即树的根 然后往里面扩展。

海蓝网络提供参考网站:http://www.xmhlweb.com/  


我要获取节点forecas_conditions中的数据 

DOM初始工作需要几个函数

DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = builderFactory.newDocumentBuilder();
Document document = builder.parse(new InputSource(new InputStreamReader(lianJie(strUrl) )));

然后通过Document对象解析XML,解析XML时会用到节点,并取得他的值 用到类 NodeList  ,Node. 下面开始上我的程序 

 http://www.xmhlweb.com/

view plain
  1. package com.study.weather;  
  2.   
  3. import java.io.IOException;  
  4. import java.io.InputStream;  
  5. import java.io.InputStreamReader;  
  6. import java.net.HttpURLConnection;  
  7. import java.net.URL;  
  8.   
  9. import javax.xml.parsers.DocumentBuilder;  
  10. import javax.xml.parsers.DocumentBuilderFactory;  
  11. import javax.xml.parsers.ParserConfigurationException;  
  12.   
  13. import org.w3c.dom.Document;  
  14. import org.w3c.dom.Element;  
  15. import org.w3c.dom.Node;  
  16. import org.w3c.dom.NodeList;  
  17. import org.xml.sax.InputSource;  
  18. import org.xml.sax.SAXException;  
  19.   
  20. public class Weather  
  21. {  
  22.   
  23.     public InputStream lianJie(String strUrl) throws IOException  
  24.     {  
  25.         URL url = new URL(strUrl);  
  26.         HttpURLConnection urlConnection = (HttpURLConnection)url.openConnection();  
  27.         InputStream is = urlConnection.getInputStream();  
  28.           
  29.           
  30.         if(is!=null)  
  31.         {  
  32.             return is;  
  33.         }  
  34.         return null;  
  35.     }  
  36.       
  37.     public void resolutionXML(String strUrl) throws ParserConfigurationException, SAXException, IOException  
  38.     {  
  39.         WeatherData wd = new WeatherData();  
  40.         DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();  
  41.         DocumentBuilder builder = builderFactory.newDocumentBuilder();  
  42.         Document document = builder.parse(new InputSource(new InputStreamReader(lianJie(strUrl) )));  
  43.           
  44.         // 得到xml_api_reply   
  45.         Element rootElement = document.getDocumentElement();  
  46.         System.out.println(rootElement.getNodeName());  
  47.         Node weatherNode =  rootElement.getElementsByTagName("weather").item(0);  
  48.           
  49. //      Node weatherNode = rootElement.getFirstChild();  
  50.         System.out.println(weatherNode.getNodeName());  
  51.         // 得到weather   
  52. //      Node nodeWeather = weatherNode.getChildNodes();  
  53.   
  54.         // 得到weather下节点数组  
  55.         NodeList nodeForecastWeathers =  weatherNode.getChildNodes();  
  56.           
  57.         // 遍历weather下的节点  
  58.         for(int i=0; i<nodeForecastWeathers.getLength(); i++)  
  59.         {  
  60.               
  61.             Node nodeForecastWeather = nodeForecastWeathers.item(i);  
  62.             // 筛选节点  找名称为 forecast_conditions 节点  
  63.             if(nodeForecastWeather.getNodeType()==Node.ELEMENT_NODE  
  64.                     &&nodeForecastWeather.getNodeName().equals("forecast_conditions"))  
  65.             {  
  66.                         // 建立forecast_conditions下节点数组  
  67.                         NodeList nodeListForecastConditions =  nodeForecastWeather.getChildNodes();  
  68.                           
  69.                         for(int j=0; j<nodeListForecastConditions.getLength(); j++)  
  70.                         {  
  71.                             //day_of_week low high condition  
  72.                             Node data = nodeListForecastConditions.item(j);  
  73.                         if(data.getNodeName().equals("day_of_week"))  
  74.                         {  
  75.                             wd.setDayOfWeek(data.getAttributes().getNamedItem("data").getNodeValue());  
  76.                         }  
  77.                         else if(data.getNodeName().equals("low"))  
  78.                         {  
  79.                             wd.setLow(data.getAttributes().item(0).getNodeValue());  
  80.                         }  
  81.                         else if(data.getNodeName().equals("high"))  
  82.                         {  
  83.                             wd.setHigh(data.getAttributes().item(0).getNodeValue());  
  84.                         }  
  85.                         else if(data.getNodeName().equals("condition"))  
  86.                         {  
  87.                             wd.setConditionData(data.getAttributes().item(0).getNodeValue());  
  88.                         }  
  89.                         }  
  90.                         System.out.println(wd.printWeatheaInfo());  
  91.                       
  92.                 }  
  93.             }  
  94.           
  95.         }  
  96.               
  97.           
  98.       
  99.           
  100.       
  101.     public static void main(String[] args) throws ParserConfigurationException, SAXException, IOException  
  102.     {  
  103.         Weather weather = new Weather();  
  104.         weather.resolutionXML("http://www.google.com/ig/api?hl=zh_CN&weather=wuhan");  
  105.    
  106.     }  
  107.     class WeatherData  
  108.     {  
  109.         String dayOfWeek;  
  110.         String low;  
  111.         String high;  
  112.         String conditionData;  
  113.         public void setDayOfWeek(String dayOfWeek)  
  114.         {  
  115.             this.dayOfWeek = dayOfWeek;  
  116.         }  
  117.         public void setLow(String low)  
  118.         {  
  119.             this.low = low;  
  120.         }  
  121.   
  122.         public void setHigh(String high)  
  123.         {  
  124.             this.high = high;  
  125.         }  
  126.   
  127.         public void setConditionData(String conditionData)  
  128.         {  
  129.             this.conditionData = conditionData;  
  130.         }  
  131.           
  132.         public String printWeatheaInfo()  
  133.         {  
  134.             return dayOfWeek+"\n"+"温度: "+low+"~~"+high+"  \n天气情况: "+conditionData;  
  135.         }  
  136.     }  
  137.   
  138. }<

转载于:https://www.cnblogs.com/wxinmylife/archive/2011/11/01/2231455.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/475435.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

用户行为分析模型-(行为事件分析、用户留存分析、漏斗分析、行为路径分析、用户分群、点击分析)

最近有些忙&#xff0c;但是看到了很好的分析模型也要跟大家分享的&#xff0c;这篇博客有些粗糙&#xff0c;主要是po上一些链接供大家学习&#xff0c;有时间的话&#xff0c;我也会写出自己关于用户行为分析的理解的。 下面是关于用户行为分析常见的分析维度&#xff0c;有…

[scikit-learn 机器学习] 4. 特征提取

文章目录1. 从类别变量中提取特征2. 特征标准化3. 从文本中提取特征3.1 词袋模型3.2 停用词过滤3.3 词干提取和词形还原3.4 TF-IDF 权重扩展词包3.5 空间有效特征向量化与哈希技巧3.6 词向量4. 从图像中提取特征4.1 从像素强度中提取特征4.2 使用卷积神经网络激活项作为特征本文…

webgis 行政图报错_WebGIS 地图 示例源码下载

【实例简介】【实例截图】【核心代码】esri Deomhtml, body, #map {height: 100%;width: 100%;}body {background-color: #fff;overflow: hidden;}#BasemapToggle {position: absolute;right: 20px;top: 20px;z-index: 50;}#HomeButton {left: 25px;position: absolute;top: 93…

正则表达式 - 去掉乱码字符/提取字符串中的中文字符/提取字符串中的大小写字母 - Python代码

目录 1.乱码符号种类较少&#xff0c;用replace() 2.乱码字符种类较多&#xff0c;用re.sub() 3.提取字符串中的中文字符 4.提取字符串中的中文字符和数字 5.提取其他 数据清洗的时候一大烦恼就是数据中总有各种乱码字符&#xff0c;比如&#xff01;#&#xffe5;%……&a…

《JavaScript高级程序设计》阅读笔记(一):ECMAScript基础

2.1 语法 区分大小写、变量弱类型、行尾分号可有可无、注释为双斜线、括号表明代码块 2.2 变量 变量用var声明&#xff0c;变量的命名规则&#xff1a;第一个字符必须是字母、下划线或美元符号&#xff1b;余下的字符可以是下划线、美元符号或任何字母或数字字符。 变量命名规范…

v8引擎和v12引擎_为什么V8和V12发动机至今还存在,而V10发动机却早早被淘汰了?...

为什么V8和V12发动机至今还存在&#xff0c;而V10发动机却早早被淘汰了&#xff1f;估计你看到标题的时候心中已经有了相关的答案&#xff0c;但是如果我说你所想的和真实的原因并不一样呢&#xff01;随着国家对环保越来越重视&#xff0c;大排量发动机逐渐也成为了汽车工业中…

LeetCode 第 29 场双周赛(890/2259,前39.4%)

文章目录1. 比赛结果2. 题目1. LeetCode 5432. 去掉最低工资和最高工资后的工资平均值 easy2. LeetCode 5433. n 的第 k 个因子 medium3. LeetCode 5434. 删掉一个元素以后全为 1 的最长子数组 medium4. LeetCode 5435. 并行课程 II hard1. 比赛结果 做出来了3道题。第三题卡了…

Hive关于数据库的增删改查

创建库 if not exists&#xff1a;防止db_hive已经存在 CREATE DATABASE if not exists db_hive;CREATE DATABASE if not exists db_hive COMMENT create my database named db_hive;#带注释CREATE DATABASE if not exists db_hive WITH dbproperties(aaaa,bbbb);#带属性 使…

【dll 返回字符串 】2

【vc <--> vc】返回void* 类型void* __stdcall torrent_hash( const char *TorrentFilePath){char szText[41]{0};if(strcmp(TorrentFilePath,"") 0 || TorrentFilePath NULL)return NULL;string strHashString "abcdefg"; sprintf(szText,&qu…

Hive关于数据表的增删改(内部表、外部表、分区表、分桶表 数据类型、分隔符类型)

建表 基本语句格式 CREATE [external] TABLE if not exists student #默认建立内部表&#xff0c;加上external则是建立外部表(id int COMMENT学号,sname string COMMENT用户名,age int COMMENT年龄)#字段名称&#xff0c;字段类型&#xff0c;字段描述信息 COMMENT 记录学生…

LeetCode 1496. 判断路径是否相交(set)

1. 题目 给你一个字符串 path&#xff0c;其中 path[i] 的值可以是 ‘N’、‘S’、‘E’ 或者 ‘W’&#xff0c;分别表示向北、向南、向东、向西移动一个单位。 机器人从二维平面上的原点 (0, 0) 处开始出发&#xff0c;按 path 所指示的路径行走。 如果路径在任何位置上出…

python数据框循环生成_python - 如何在 Pandas 的for循环迭代中创建多个数据框?

我需要在熊猫中创建一个函数&#xff0c;该函数将单个数据框作为输入&#xff0c;并根据特定条件返回多个数据框作为输出。 (请检查下面的示例以了解情况)。我很难弄清楚如何做。我需要一些专家的编码建议。范例1&#xff1a;输入 100列的数据框输出数据帧1的前10&#xff05;列…

除去数组中的空字符元素array_filter()

除去数组中的空字符元素 <?php$str1_arrayarray(电影618,,http://www.movie618.com,,1654,);$str1_arrayarray_filter($str1_array);print_r($str1_array); ?> 显示结果&#xff1a; Array( [0] > 电影618 [2] > http://www.movie618.com [4] > …

Hive的数据加载与导出

普通表的加载 1.load方式 load data [local] inpath [源文件路径] into table 目标表名; 从HDFS上加载数据&#xff0c;本质上是移动文件所在的路径 load data inpath /user/student.txt into table student; 从本地加载数据&#xff0c;本质上是复制本地的文件到HDFS上 lo…

电压压力蕊片_一文让你知道什么是压力变送器

一般来说&#xff0c;压力变送器主要由测压元件传感器(也称作压力传感器)、测量电路和过程连接件三部分组成。它能将测压元件传感器感受到的气体、液体等物理压力参数转变成标准的电信号(如4~20mADC等)&#xff0c;以供给指示报警仪、记录仪、调节器等二次仪表进行测量、指示和…

LeetCode 1497. 检查数组对是否可以被 k 整除(余数配对)

1. 题目 给你一个整数数组 arr 和一个整数 k &#xff0c;其中数组长度是偶数&#xff0c;值为 n 。 现在需要把数组恰好分成 n / 2 对&#xff0c;以使每对数字的和都能够被 k 整除。 如果存在这样的分法&#xff0c;请返回 True &#xff1b;否则&#xff0c;返回 False 。…

C# 多线程编程 ThreadStart ParameterizedThreadStart

原文地址&#xff1a;http://club.topsage.com/thread-657023-1-1.html 在实例化Thread的实例&#xff0c;需要提供一个委托&#xff0c;在实例化这个委托时所用到的参数是线程将来启动时要运行的方法。在.net中提供了两种启动线程的方式&#xff0c;一种是不带参数的启动…

Hive的查找语法

基本语法格式&#xff1a; select [all | DISTINCT ] a.id, a.sname, a.age from student a join student02 b on a.id b.id # 匹配函数 where a.age >18 # 条件语句 group by a.age having a.age >18 # 分组,having:分组后的筛选条件 order by a.age # 全局排序 sort …

动词ing基本用法_动词ing的用法

动词ing的用法2020-09-14 11:41:52文/董月表示现在(指说话人说话时)正在发生的事情&#xff1b;习惯进行&#xff1a;表示长期的或重复性的动作&#xff0c;说话时动作未必正在进行&#xff1b;表示渐变的动词有&#xff1a;get&#xff0c;grow&#xff0c;become&#xff0c;…

LeetCode 1498. 满足条件的子序列数目(排序+二分查找+快速幂)

1. 题目 给你一个整数数组 nums 和一个整数 target 。 请你统计并返回 nums 中能满足其最小元素与最大元素的 和 小于或等于 target 的 非空 子序列的数目。 由于答案可能很大&#xff0c;请将结果对 10^9 7 取余后返回。 示例 1&#xff1a; 输入&#xff1a;nums [3,5,…