HTML不会在使用Webclient的控制台中显示

时间:2010-12-19 19:47:22

标签: c# webclient

我有以下代码片段,我试图将特定网站的html输出到控制台。

using System;
using System.Net;

namespace googleHTML
{
    class Program
    {
        static void Main(string[] args)
        {

            WebClient client = new WebClient();

            string htmlCode = client.DownloadString("http://www.google.com");

            Console.ReadLine();
        }
    }
}

当我在控制台中运行时,没有任何反应?

感谢。

2 个答案:

答案 0 :(得分:1)

你没有对html做任何事情,你只是存储它。

尝试

Console.WriteLine(htmlCode);

string htmlCode = client.DownloadString..

答案 1 :(得分:1)

Console.Write(htmlCode);

Console.ReadLine从控制台流中读取一行输入