.NET 中 java.net.URLConnection 的等效项
是否有相当于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可能最接近的是:
因为这将处理多个协议等。但如果您指的是 http - 我会使用
WebClient
;它比HttpWebRequest
(WebRequest
实现之一)简单得多。如果您只想下载页面:
Probably the closest is:
since this will handle multiple protocols etc. But if you are meaning http - I'd use
WebClient
; it is much simpler thanHttpWebRequest
(one of theWebRequest
implementations).If all you want is to download a page:
HttpWebRequest
和WebClient
与我一样接近可以看到。您是否需要特定的功能或一组功能?
HttpWebRequest
andWebClient
are as close as I can see.Is there a specific feature or set of features that you require?