标签: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(); }
标签:style blog http color ar os sp div on
原文地址:http://www.cnblogs.com/dingblog/p/4090801.html