日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

下载网页通用类

發布時間:2025/5/22 编程问答 19 豆豆
生活随笔 收集整理的這篇文章主要介紹了 下载网页通用类 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
/// <summary>/// 根據網頁地址去下載網頁,包括從網頁中獲取自己所需要的內容/// </summary>public class WebWrapper{public WebWrapper() { }public WebWrapper(string link) { Link = link; }#region Download htmlpublic string Link { get; set; }public string DownLoadHtml(string link){string htmlString = string.Empty;try{WebRequest webRequest = System.Net.WebRequest.Create(link);webRequest.Method = "GET";webRequest.ContentType = "application/x-www-form-urlencoded";using (StreamReader sr = new StreamReader(webRequest.GetResponse().GetResponseStream())){htmlString = sr.ReadToEnd();}}catch (Exception ex){throw new ApplicationException(string.Format("Error Downloading CurrencyRate: {0}", ex.Message));}return htmlString;}public string DownLoadHtml(){if (string.IsNullOrEmpty(Link))throw new ApplicationException("Please input web address");return DownLoadHtml(Link);}#endregion#region Get matched contentpublic string GetContent(string html, string regexExpress){Regex re = new Regex(regexExpress);MatchCollection ms = re.Matches(html);if (ms == null || ms.Count == 0)throw new ApplicationException("Can not find matched content");return ms[0].ToString();}public string GetContent(string regexExpress){string html = DownLoadHtml();return GetContent(html, regexExpress);}#endregion#region Regex Propertiespublic string BeginConstruction = "(?<=({0}))";public string EndConstruction = "(?=({0}))";public string RegexBeginExpression(string begin) { return string.Format(BeginConstruction, begin); }public string RegexEndExpression(string end) { return string.Format(EndConstruction, end); }public string RegexAnyExpression { get { return "[.\\s\\S]*?"; } }#endregion}

  

轉載于:https://www.cnblogs.com/EasyInvoice/p/3808844.html

總結

以上是生活随笔為你收集整理的下载网页通用类的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。