.NET 中 java.net.URLConnection 的等效项

发布于 2024-10-06 00:41:21 字数 204 浏览 3 评论 0原文

是否有相当于 java.net. URLConnection 类 在.NET中。 ,例如 HttpWebRequest?还有什么可以用的?

Is there an equivalent of the java.net.URLConnection class
in .NET. , for example the HttpWebRequest? What else could be used?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乖乖公主 2024-10-13 00:41:21

可能最接近的是:

WebRequest req = WebRequest.Create(url); // note this is IDisposable so
                                         // should be in a "using" block, or
                                         // otherwise disposed.

因为这将处理多个协议等。但如果您指的是 http - 我会使用 WebClient;它比 HttpWebRequestWebRequest 实现之一)简单得多。

如果您只想下载页面:

string s;
using(var client = new WebClient()) {
    s = client.DownloadString(url);
}

Probably the closest is:

WebRequest req = WebRequest.Create(url); // note this is IDisposable so
                                         // should be in a "using" block, or
                                         // otherwise disposed.

since this will handle multiple protocols etc. But if you are meaning http - I'd use WebClient; it is much simpler than HttpWebRequest (one of the WebRequest implementations).

If all you want is to download a page:

string s;
using(var client = new WebClient()) {
    s = client.DownloadString(url);
}
无敌元气妹 2024-10-13 00:41:21

HttpWebRequestWebClient 与我一样接近可以看到。

您是否需要特定的功能或一组功能?

HttpWebRequest and WebClient are as close as I can see.

Is there a specific feature or set of features that you require?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文