如何在网页内容 (html) 中扫描(如 scanf(来自 C)和 Scanner 类(来自 Java))并将其用作我的程序的输入?
string[] line = new string[length];
for (int i = 0; i < line.Length; i++) {
line[i] = Console.ReadLine();
//Can I have ReadLine read from a website not the Console?
}
例如,我想将一个包含我附近公共汽车时刻表的文本文件放在 Web 服务器上,然后访问它并使用它为我的应用程序生成输出。这样我就可以更新它并且始终可以访问这些更新。
PS 我是一个初级程序员,尤其是一个初级 C# 程序员,所以我很难找到我正在寻找的东西,因为我不知道要搜索什么。
感谢您的帮助:我能够开始寻找正确的东西,这很有效:
class MainClass
{
public static void Main (string[] args)
{
// Create web client.
WebClient client = new WebClient();
// Download string.
string value = client.DownloadString("http://www.example.com");
// Write values.
Console.WriteLine("--- WebClient result ---");
Console.WriteLine(value.Length);
Console.WriteLine(value);
}
}