zoukankan      html  css  js  c++  java
  • 用asp.net c# 获取网页源代码

    方法一:webrequest

     private string GetStringByUrl(string strUrl)
        {
            WebRequest wrt = WebRequest.Create(strUrl);
            WebResponse wrse = wrt.GetResponse();
            Stream strM = wrse.GetResponseStream();
            StreamReader SR = new StreamReader(strM, Encoding.GetEncoding("gb2312"));
            string strallstrm = SR.ReadToEnd();
            return strallstrm;
        }

    方法二:HttpWebRequest

     public static string GetPage(string url, Encoding encoding)

            {

                HttpWebRequest request
    = null;

                HttpWebResponse response
    = null;

                StreamReader reader
    = null;

               
    try

                {

                    request
    = (HttpWebRequest)WebRequest.Create(url);

                    request.UserAgent
    = "www.svnhost.cn";

                    request.Timeout
    = 20000;

    request.AllowAutoRedirect
    = false;



                    response
    = (HttpWebResponse)request.GetResponse();

                   
    if (response.StatusCode == HttpStatusCode.OK && response.ContentLength < 1024 * 1024)

                    {

                        reader
    = new StreamReader(response.GetResponseStream(), encoding);

                       
    string html = reader.ReadToEnd();



                       
    return html;

                    }

                }

               
    catch

                {

                }

               
    finally

                {

                   
    if (response != null)

                    {

                        response.Close();

                        response
    = null;

                    }
                   
    if (reader != null)

                        reader.Close();

                   
    if (request != null)

                        request
    = null;

                }

              
    return string.Empty;

            }

  • 相关阅读:
    LruCache 原理
    线程间通信, 进程间通信
    安卓 权限 规则
    android 捕获所有异常 未捕获的异常
    serializable parcelable
    android intent 传递 二进制数据
    apk安装 卸载 原理
    ARGB 8888 内存大小
    dalvik 基于 jvm 的改进
    查看 MySQL 数据库中每个表占用的空间大小
  • 原文地址:https://www.cnblogs.com/luluping/p/1347373.html
Copyright © 2011-2022 走看看