仿应用下载html源码(HTML源码下载)
本文目录一览:
- 1、C#不用WebBrowser直接下载网页HTML源码
- 2、求最新导航整站网站源码下载,最好是像hao123和265那样强大的网站源码!谢谢了
- 3、急!本人现需要下载HTML源代码
- 4、编程:手机网站怎么下载下来html源代码
C#不用WebBrowser直接下载网页HTML源码
最简单的用WebClient:
调用方法:string html=DownloadData("",Encoding.GetEncoding("gb2312"));
public static string DownloadData(string url,Encoding encoding)
{
WebClient web = new WebClient();
return encoding.GetString(web.DownloadData(url));
}
复杂一点用HttpWebRequest/HttpWebResponse:
调用方法:string html=DownloadHtmlPage("",Encoding.GetEncoding("gb2312"),"GET",20);
public static string DownloadHtmlPage(string pageUrl, Encoding encoding, string requestMethod,int timeOut)
{
string value = string.Empty;
HttpWebResponse response=null;
Stream data=null;
StreamReader sr=null;
try
{
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(pageUrl);
request.Method = requestMethod;
if (timeOut != -1) request.Timeout = timeOut;
response = (HttpWebResponse)request.GetResponse();
data = response.GetResponseStream();
sr = new StreamReader(data, encoding);
string str;
StringBuilder source = new StringBuilder();
while ((str = sr.ReadLine()) != null)
source.Append(str).Append("\r\n");
value = source.ToString();
}
finally
{
if (sr != null) sr.Close();
if(data!=null) data.Close();
if(response!=null) response.Close();
}
return value;
}
求最新导航整站网站源码下载,最好是像hao123和265那样强大的网站源码!谢谢了
PIC22网址导航(仿265全站生成html) Bulid 081015
软件评价:
是否推荐:否 相关评论
软件大小:11.9MB
运行环境:ASP+ACCESS
软件语言:简体中文
软件授权:免费软件
收录/更新:2006-04-30/2008-10-15
看看 是不是符合你的要求~。
急!本人现需要下载HTML源代码
HTML源代码点击浏览器上的
查看
-源文件
就出来了``
html
中间就是`
/html
编程:手机网站怎么下载下来html源代码
你好,主要有一下方法:
方法一、查看html源码的站点
百度“查看网页源码”,有很多支持查看网页源码的在线站点。
方法二、QQ浏览器 + ES文件管理器
使用QQ浏览器打开网页,长按,“保存离线网页”。
打开ES文件管理器,打开路径“存储卡/QQBrowser/网页保存”,打开方式选择“ES文本阅读器”即可查看源码。
方法三、Firefox 或 Chrome 手机浏览器
在要查看源码的网址前加“view-source:”即可。
望采纳~