为了正常的体验网站,请在浏览器设置里面开启Javascript功能!

C#访问URL地址并返回值

2017-09-26 3页 doc 14KB 43阅读

用户头像

is_977556

暂无简介

举报
C#访问URL地址并返回值C#访问URL地址并返回值 /// 访问URL地址 public string CallWebPage(string url, int httpTimeout, Encoding postEncoding) { string rStr = ""; System.Net.WebRequest req = null; System.Net.WebResponse resp = null; System.IO.Stream os = null; System.IO.StreamReader sr = null; ...
C#访问URL地址并返回值
C#访问URL地址并返回值 /// 访问URL地址 public string CallWebPage(string url, int httpTimeout, Encoding postEncoding) { string rStr = ""; System.Net.WebRequest req = null; System.Net.WebResponse resp = null; System.IO.Stream os = null; System.IO.StreamReader sr = null; try { //创建连接 req = System.Net.WebRequest.Create(url); req.ContentType = "application/x-www-form-urlencoded"; req.Method = "GET"; //时间 if (httpTimeout > 0) { req.Timeout = httpTimeout; } //读取返回结果 resp = req.GetResponse(); sr = new System.IO.StreamReader(resp.GetResponseStream(), postEncoding); rStr = sr.ReadToEnd(); int bodystart = rStr.IndexOf("") + 6; // 除去 int bodylenght = rStr.LastIndexOf("") - bodystart; // 除去 rStr = rStr.Substring(bodystart, bodylenght).Trim(); // 除去空格 } catch (Exception ex) { LogUtil.Warn("HttpUtil.CallWebPage 异常(WebException) :" + ex.Message); } finally { try { //关闭资源 if (os != null) { os.Dispose(); os.Close(); } if (sr != null) { sr.Dispose(); sr.Close(); } if (resp != null) { resp.Close(); } if (req != null) { req.Abort(); req = null; } } catch (Exception ex2) { LogUtil.Exception("HttpUtil.CallWebPage 关闭连接异常:" + ex2.Message); } } return rStr; }
/
本文档为【C#访问URL地址并返回值】,请使用软件OFFICE或WPS软件打开。作品中的文字与图均可以修改和编辑, 图片更改请在作品中右键图片并更换,文字修改请直接点击文字进行修改,也可以新增和删除文档中的内容。
[版权声明] 本站所有资料为用户分享产生,若发现您的权利被侵害,请联系客服邮件isharekefu@iask.cn,我们尽快处理。 本作品所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用。 网站提供的党政主题相关内容(国旗、国徽、党徽..)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。

历史搜索

    清空历史搜索