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

c#获取网页html

时间:2014-11-12 00:33:25      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   os   sp   div   on   

        static void Main(string[] args)
        {
            WebRequest wrq =   WebRequest.Create("http://www.baidu.com");
            WebResponse wrs = wrq.GetResponse();
            Stream strm = wrs.GetResponseStream();
            StreamReader sr = new StreamReader(strm);
            string line;

            while ((line = sr.ReadLine()) != null)
            {
                Console.WriteLine(line);
            }
            Console.Read();
            strm.Close();
        }

 

c#获取网页html

标签:style   blog   http   color   ar   os   sp   div   on   

原文地址:http://www.cnblogs.com/dingblog/p/4090801.html

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