码迷,mamicode.com
首页 > Windows程序 > 详细

Winfrom 抓取web页面内容代码

时间:2014-09-18 18:30:54      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   div   sp   代码   log   

            WebRequest request = WebRequest.Create("http://1.bjapp.sinaapp.com/play.php?a=" + PageUrl);
            WebResponse response = request.GetResponse();
            Stream resStream = response.GetResponseStream();
            StreamReader sr = new StreamReader(resStream, System.Text.Encoding.UTF8);
            string htmlinfo = sr.ReadToEnd();
            resStream.Close();
            sr.Close();

Winfrom 抓取web页面内容代码

标签:style   blog   http   color   os   div   sp   代码   log   

原文地址:http://www.cnblogs.com/xiao-bei/p/3979717.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!