我想访问一个网页(它必须被访问,不需要阅读、修改等。只需访问)。我不想使用网络浏览器。
问问题
246 次
3 回答
6
只需执行一个 cURL GET 请求。
curl http://example.com/
如果你想使用 C#,那么
using System.Net;
string url = "https://www.example.com/";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream resStream = response.GetResponseStream();
于 2013-06-16T03:43:55.787 回答
0
尝试使用WebClient
类:
例如:
WebClient client = new WebClient ();
string reply = client.DownloadString (address);
于 2013-06-16T06:19:54.843 回答
0
此外,您可以使用 Fiddler 向远程服务器发送请求(这对服务调试很有帮助)。
于 2013-06-16T04:06:29.477 回答