中国天气网天气预报API接口城市代码,XML格式,数据具体到县 区级别

               

http://blog.csdn.net/lun379292733/article/details/17339271

说到开发天气预报,就需要找一个开放接口了,接口有很多,不过个人觉得,中国天气网的数据比较准确,而且也有权威性。访问地址如:http://m.weather.com.cn/data/101010100.html,这是北京的天气URL,其中101010100就是城市代码了,比如西安的天气URL为:http://m.weather.com.cn/data/101110101.html,那么现在主要的任务就是怎样获取这些城市的城市代码了,本人自己写了个小程序,解析了中央气象台返回来的数据,并保存为XML格式,数据具体到县、区级别,供大家参考,具体如下:

<?xml version="1.0" encoding="UTF-8"?>

<China>
  <province id="01" name="北京">
    <city id="0101" name="北京">
      <county id="010101" name="北京" weatherCode="101010100"/>
      <county id="010102" name="海淀" weatherCode="101010200"/>
      <county id="010103" name="朝阳" weatherCode="101010300"/>
      <county id="010104" name="顺义" weatherCode="101010400"/>
      <county id="010105" name="怀柔" weatherCode="101010500"/>
      <county id="010106" name="通州" weatherCode="101010600"/>
      <county id="010107" name="昌平" weatherCode="101010700"/>
      <county id="010108" name="延庆" weatherCode="101010800"/>
      <county id="010109" name="丰台" weatherCode="101010900"/>
      <county id="010110" name="石景山" weatherCode="101011000"/>
      <county id="010111" name="大兴" weatherCode="101011100"/>
      <county id="010112" name="房山" weatherCode="101011200"/>
      <county id="010113" name="密云" weatherCode="101011300"/>
      <county id="010114" name="门头沟" weatherCode="101011400"/>
      <county id="010115" name="平谷" weatherCode="101011500"/>
    </city>
  </province>
  <province id="02" name="上海">
    <city id="0201" name="上海">
      <county id="020101" name="上海" weatherCode="101020100"/>
      <county id="020102" name="闵行" weatherCode="101020200"/>
      <county id="020103" name="宝山" weatherCode="101020300"/>
      <county id="020104" name="嘉定" weatherCode="101020500"/>
      <county id="020105" name="浦东南汇" weatherCode="101020600"/>
      <county id="020106" name="金山" weatherCode="101020700"/>
      <county id="020107" name="青浦" weatherCode="101020800"/>
      <county id="020108" name="松江" weatherCode="101020900"/>
      <county id="020109" name="奉贤" weatherCode="101021000"/>
      <county id="020110" name="崇明" weatherCode="101021100"/>
      <county id="020111" name="徐家汇" weatherCode="101021200"/>
      <county id="020112" name="浦东" weatherCode="101021300"/>
    </city>
  </province>
  <province id="03" name="天津">
    <city id="0301" name="天津">
      <county id="030101" name="天津" weatherCode="101030100"/>
      <county id="030102" name="武清" weatherCode="101030200"/>
      <county id="030103" name="宝坻" weatherCode="101030300"/>
      <county id="030104" name="东丽" weatherCode="101030400"/>
      <county id="030105" name="西青" weatherCode="101030500"/>
      <county id="030106" name="北辰" weatherCode="101030600"/>
      <county id="030107" name="宁河" weatherCode="101030700"/>
      <county id="030108" name="汉沽" weatherCode="101030800"/>
      <county id="030109" name="静海" weatherCode="101030900"/>
      <county id="030110" name="津南" weatherCode="101031000"/>
      <county id="030111" name="塘沽" weatherCode="101031100"/>
      <county id="030112" name="大港" weatherCode="101031200"/>
      <county id="030113" name="蓟县" weatherCode="101031400"/>
    </city>
  </province>
  <province id="04" name="重庆">
    <city id="0401" name="重庆">
      <county id="040101" name="重庆" weatherCode="101040100"/>
      <county id="040102" name="永川" weatherCode="101040200"/>
      <county id="040103" name="合川" weatherCode="101040300"/>
      <county id="040104" name="南川" weatherCode="101040400"/>
      <county id="040105" name="江津" weatherCode="101040500"/>
      <county id="040106" name="万盛" weatherCode="101040600"/>
      <county id="040107" name="渝北" weatherCode="101040700"/>
      <county id="040108" name="北碚" weatherCode="101040800"/>
      <county id="040109" name="巴南" weatherCode="101040900"/>
      <county id="040110" name="长寿" weatherCode="101041000"/>
      <county id="040111" name="黔江" weatherCode="101041100"/>
      <county id="040112" name="万州" weatherCode="101041300"/>
      <county id="040113" name="涪陵" weatherCode="101041400"/>
      <county id="040114" name="开县" weatherCode="101041500"/>
      <county id="040115" name="城口" weatherCode="101041600"/>
      <county id="040116" name="云阳" weatherCode="101041700"/>
      <county id="040117" name="巫溪" weatherCode="101041800"/>
      <county id="040118" name="奉节" weatherCode="101041900"/>
      <county id="040119" name="巫山" weatherCode="101042000"/>
      <county id="040120" name="潼南" weatherCode="101042100"/>
      <county id="040121" name="垫江" weatherCode="101042200"/>
      <county id="040122" name="梁平" weatherCode="101042300"/>
      <county id="040123" name="忠县" weatherCode="101042400"/>
      <county id="040124" name="石柱" weatherCode="101042500"/>
      <county id="040125" name="大足" weatherCode="101042600"/>
      <county id="040126" name="荣昌" weatherCode="101042700"/>
      <county id="040127" name="铜梁" weatherCode="101042800"/>
      <county id="040128" name="璧山" weatherCode="101042900"/>
      <county id="040129" name="丰都" weatherCode="101043000"/>
      <county id="040130" name="武隆" weatherCode="101043100"/>
      <county id="040131" name="彭水" weatherCode="101043200"/>
      <county id="040132" name="綦江" weatherCode="101043300"/>
      <county id="040133" name="酉阳" weatherCode="101043400"/>
      <county id="040134" name="秀山" weatherCode="101043600"/>
    </city>
  </province>
  <province id="05" name="黑龙江">
    <city id="0501" name="哈尔滨">
      <county id="050101" name="哈尔滨" weatherCode="101050101"/>
      <county id="050102" name="双城" weatherCode="101050102"/>
      <county id="050103" name="呼兰" weatherCode="101050103"/>
      <county id="050104" name="阿城" weatherCode="101050104"/>
      <county id="050105" name="宾县" weatherCode="101050105"/>
      <county id="050106" name="依兰" weatherCode="101050106"/>
      <county id="050107" name="巴彦" weatherCode="101050107"/>
      <county id="050108" name="通河" weatherCode="101050108"/>
      <county id="050109" name="方正" weatherCode="101050109"/>
      <county id="050110" name="延寿" weatherCode="101050110"/>
      <county id="050111" name="尚志" weatherCode="101050111"/>
      <county id="050112" name="五常" weatherCode="101050112"/>
      <county id="050113" name="木兰" weatherCode="101050113"/>
    </city>
    <city id="0502" name="齐齐哈尔">
      <county id="050201" name="齐齐哈尔" weatherCode="101050201"/>
      <county id="050202" name="讷河" weatherCode="101050202"/>
      <county id="050203" name="龙江" weatherCode="101050203"/>
      <county id="050204" name="甘南" weatherCode="101050204"/>
      <county id="050205" name="富裕" weatherCode="101050205"/>
      <county id="050206" name="依安" weatherCode="101050206"/>
      <county id="050207" name="拜泉" weatherCode="101050207"/>
      <county id="050208" name="克山" weatherCode="101050208"/>
      <county id="050209" name="克东" weatherCode="101050209"/>
      <county id="050210" name="泰来" weatherCode="101050210"/>
    </city>
    <city id="0503" name="牡丹江">
      <county id="050301" name="牡丹江" weatherCode="101050301"/>
      <county id="050302" name="海林" weatherCode="101050302"/>
      <county id="050303" name="穆棱" weatherCode="101050303"/>
      <county id="050304" name="林口" weatherCode="101050304"/>
      <county id="050305" name="绥芬河" weatherCode="101050305"/>
      <county id="050306" name="宁安" weatherCode="101050306"/>
      <county id="050307" name="东宁" weatherCode="101050307"/>
    </city>
    <city id="0504" name="佳木斯">
      <county id="050401" name="佳木斯" weatherCode="101050401"/>
      <county id="050402" name="汤原" weatherCode="101050402"/>
      <county id="050403" name="抚远" weatherCode="101050403"/>
      <county id="050404" name="桦川" weatherCode="101050404"/>
      <county id="050405" name="桦南" weatherCode="101050405"/>
      <county id="050406" name="同江" weatherCode="101050406"/>
      <county id="050407" name="富锦" weatherCode="101050407"/>
    </city>
    <city id="0505" name="绥化">
      <county id="050501" name="绥化" weatherCode="101050501"/>
      <county id="050502" name="肇东" weatherCode="101050502"/>
      <county id="050503" name="安达" weatherCode="101050503"/>
      <county id="050504" name="海伦" weatherCode="101050504"/>
      <county id="050505" name="明水" weatherCode="101050505"/>
      <county id="050506" name="望奎" weatherCode="101050506"/>
      <county id="050507" name="兰西" weatherCode="101050507"/>
      <county id="050508" name="青冈" weatherCode="101050508"/>
      <county id="050509" name="庆安" weatherCode="101050509"/>
      <county id="050510" name="绥棱" weatherCode="101050510"/>
    </city>
    <city id="0506" name="黑河">
      <county id="050601" name="黑河" weatherCode="101050601"/>
      <county id="050602" name="嫩江" weatherCode="101050602"/>
      <county id="050603" name="孙吴" weatherCode="101050603"/>
      <county id="050604" name="逊克" weatherCode="101050604"/>
      <county id="050605" name="五大连池" weatherCode="101050605"/>
      <county id="050606" name="北安" weatherCode="101050606"/>
    </city>
    <city id="0507" name="大兴安岭">
      <county id="050701" name="大兴安岭" weatherCode="101050701"/>
      <county id="050702" name="塔河" weatherCode="101050702"/>
      <county id="050703" name="漠河" weatherCode="101050703"/>
      <county id="050704" name="呼玛" weatherCode="101050704"/>
      <county id="050705" name="呼中" weatherCode="101050705"/>
      <county id="050706" name="新林" weatherCode="101050706"/>
      <county id="050707" name="加格达奇" weatherCode="101050708"/>
    </city>
    <city id="0508" name="伊春">
      <county id="050801" name="伊春" weatherCode="101050801"/>
      <county id="050802" name="乌伊岭" weatherCode="101050802"/>
      <county id="050803" name="五营" weatherCode="101050803"/>
      <county id="050804" name="铁力" weatherCode="101050804"/>
      <county id="050805" name="嘉荫" weatherCode="101050805"/>
    </city>
    <city id="0509" name="大庆">
      <county id="050901" name="大庆" weatherCode="101050901"/>
      <county id="050902" name="林甸" weatherCode="101050902"/>
      <county id="050903" name="肇州" weatherCode="101050903"/>
      <county id="050904" name="肇源" weatherCode="101050904"/>
      <county id="050905" name="杜尔伯特" weatherCode="101050905"/>
    </city>
    <city id="0510" name="七台河">
      <county id="051001" name="七台河" weatherCode="101051002"/>
      <county id="051002" name="勃利" weatherCode="101051003"/>
    </city>
    <city id="0511" name="鸡西">
      <county id="051101" name="鸡西" weatherCode="101051101"/>
      <county id="051102" name="虎林" weatherCode="101051102"/>
      <county id="051103" name="密山" weatherCode="101051103"/>
      <county id="051104" name="鸡东" weatherCode="101051104"/>
    </city>
    <city id="0512" name="鹤岗">
      <county id="051201" name="鹤岗" weatherCode="101051201"/>
      <county id="051202" name="绥滨" weatherCode="101051202"/>
      <county id="051203" name="萝北" weatherCode="101051203"/>
    </city>
    <city id="0513" name="双鸭山">
      <county id="051301" name="双鸭山" weatherCode="101051301"/>
      <county id="051302" name="集贤" weatherCode="101051302"/>
      <county id="051303" name="宝清" weatherCode="101051303"/>
      <county id="051304" name="饶河" weatherCode="101051304"/>
      <county id="051305" name="友谊" weatherCode="101051305"/>
    </city>
  </province>
  <province id="06" name="吉林">
    <city id="0601" name="长春">
      <county id="060101" name="长春" weatherCode="101060101"/>
      <county id="060102" name="农安" weatherCode="101060102"/>
      <county id="060103" name="德惠" weatherCode="101060103"/>
      <county id="060104" name="九台" weatherCode="101060104"/>
      <county id="060105" name="榆树" weatherCode="101060105"/>
      <county id="060106" name="双阳" weatherCode="101060106"/>
    </city>
    <city id="0602" name="吉林">
      <county id="060201" name="吉林" weatherCode="101060201"/>
      <county id="060202" name="舒兰" weatherCode="101060202"/>
      <county id="060203" name="永吉" weatherCode="101060203"/>
      <county id="060204" name="蛟河" weatherCode="101060204"/>
      <county id="060205" name="磐石" weatherCode="101060205"/>
      <county id="060206" name="桦甸" weatherCode="101060206"/>
    </city>
    <city id="0603" name="延边">
      <county id="060301" name="延吉" weatherCode="101060301"/>
      <county id="060302" name="敦化" weatherCode="101060302"/>
      <county id="060303" name="安图" weatherCode="101060303"/>
      <county id="060304" name&

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值