当前位置:编程学习 > C#/ASP.NET >>

关于获取某个网站的页面内容


做一个软件,获取指定网站的信息,并且针对某些网站还提供搜索和下载功能。
要是做这样一个软件的话,是不是得先要解决如何从网站获取内容的问题?
那么究竟怎么才能从该网站来获取页面的内容呢,就比如说想获取csdn或者其他网站的首页内容,应该怎么做呢? --------------------编程问答-------------------- WebClient MyWebClient = new WebClient();  
string html = MyWebClient.DownloadString("");

WebRequest request = WebRequest.Create("");
WebResponse response = request.GetResponse();
Stream resStream = response.GetResponseStream();
StreamReader sr = new StreamReader(resStream, System.Text.Encoding.Default);
string s= sr.ReadToEnd();
resStream.Close();
sr.Close();
正则获取特定内容 --------------------编程问答--------------------
引用楼主 wangysuper 的回复:
做一个软件,获取指定网站的信息,并且针对某些网站还提供搜索和下载功能。
要是做这样一个软件的话,是不是得先要解决如何从网站获取内容的问题?
那么究竟怎么才能从该网站来获取页面的内容呢,就比如说想获取csdn或者其他网站的首页内容,应该怎么做呢?


正解 --------------------编程问答--------------------
引用 1 楼 wuyq11 的回复:
WebClient MyWebClient = new WebClient();  
string html = MyWebClient.DownloadString("");

WebRequest request = WebRequest.Create("");
WebResponse response = request.GetResponse();
Stream resStrea……


正解 --------------------编程问答--------------------
引用 1 楼 wuyq11 的回复:
WebClient MyWebClient = new WebClient();  
string html = MyWebClient.DownloadString("");

WebRequest request = WebRequest.Create("");
WebResponse response = request.GetResponse();
Stream resStrea……


正则表达式的相关东西怎么使用呢,有什么好的快速入门的资料吗》 --------------------编程问答--------------------
引用 1 楼 wuyq11 的回复:
WebClient MyWebClient = new WebClient();  
string html = MyWebClient.DownloadString("");

WebRequest request = WebRequest.Create("");
WebResponse response = request.GetResponse();
Stream resStre……

up --------------------编程问答-------------------- 顶~~~
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,