有没有可能在没有浏览器的情况下访问网页?
本文关键字:访问 情况下 网页 浏览器 有可能 | 更新日期: 2023-09-27 18:18:29
我想访问一个网页(它必须被访问,没有什么需要被读取,修改等。只是访问)。我不想用浏览器
做一个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();
还可以使用Fiddler向远程服务器发送请求(这对服务调试非常有帮助)
尝试使用WebClient
class:
WebClient client = new WebClient ();
string reply = client.DownloadString (address);