基本信息
源码名称:HtmlAgilityPack采集网页中的(城市三级联动数据)
源码大小:1.95M
文件格式:.zip
开发语言:C#
更新时间:2019-06-27
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using HtmlAgilityPack;
namespace 城市三级联动数据
{
class Program
{
static void Main(string[] args)
{
//所采用数据url http://www.stats.gov.cn/tjsj/tjbz/xzqhdm/201608/t20160809_1386477.html
HtmlDocument doc =new HtmlDocument();
string aa = File.ReadAllText("aa.html", Encoding.UTF8);
doc.LoadHtml(aa);
HtmlNodeCollection nodes = doc.DocumentNode.SelectNodes("//p[@class='MsoNormal']");//选取所有地区数据的p标签
for (int i = 0; i < nodes.Count; i )
{
HtmlNode node = nodes[i].SelectSingleNode("span[1]");//选取地区代码 span标签
HtmlNode node2 = nodes[i].SelectSingleNode("span[2]");//选取地区名字 span标签
string code = node.InnerText.Replace(" ", "").Trim();//对地区代码进行处理
string name = node2.InnerText;//获取地区名字
string realName = name.Replace(" ", "");//处理地区名字占位符
int slength = name.Length - realName.Length;//计算占位符个数 即 地区级别
Console.WriteLine("地区代码:" code "-----名字:" realName "-----级别:" slength);
//此处进行插入数据库操作
//...
}
Console.WriteLine();
Console.ReadKey();
}
}
}