c#根据url爬取网页html获取所有链接地址代码
代码语言:c#
所属分类:其他
代码描述:c#根据url爬取网页html获取所有链接地址代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
using System; using System.Net; using System.Text; using System.Text.RegularExpressions; namespace HelloWorldApplication { class HelloWorld { static void Main(string[] args) { System.Net.WebClient client = new WebClient(); byte[] page = client.DownloadData("http://www.bfw.wiki"); string content = System.Text.Encoding.UTF8.GetString(page); string regex = "href=[\\\"\\\'](http:\\/\\/|\\.\\/|\\/)?.........完整代码请登录后点击上方下载按钮下载查看
网友评论0