我想从这个网站上抓取表格:http://www.x-rates.com/table/?from=INR&amount=1
我想用C#Windows应用程序执行此操作
我使用Web请求和响应,它向我显示所有页面源代码
我怎样才能选择那个特定的表?
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.x-rates.com/table/?from=INR&amount=1");
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
StreamReader reader = new StreamReader(response.GetResponseStream());
richTextBox.text = reader.ReadToEnd();
答案 0 :(得分:0)