我怎样才能从网站上阅读? C#

时间:2014-02-13 21:57:56

标签: c# automation bots

我正在尝试制作机器人,如何从网站上读取1800/1800这样的值?

enter image description here

        Console.WriteLine("Health: ")
        Console.WriteLine("Energy: ")
        Console.WriteLine("Cash: ")
        Console.WriteLine("Level: ")

我正在制作一个控制台应用程序,试图获得价值。就像健康低于1000/1800一样,它就会执行发送密钥。比如将密钥“0”发送到网站。

谢谢,王子

1 个答案:

答案 0 :(得分:3)

尝试使用WebClient.DownloadString

http://msdn.microsoft.com/en-us/library/system.net.webclient.downloadstring(v=vs.110).aspx

WebClient client = new WebClient ();
string reply = client.DownloadString ("http://google.com");
然后,您将解析文档以获取所需的内容。您可以使用HTML Agility包

http://html-agility-pack.net