Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 WebClient 类下载文件,但有时文件以 HTML 形式返回(对此我无能为力) 我想做的是使用 WebClient 类检查内容是否为 HTML,我的代码是如下:
client.DownloadFile(downloadURL, "downloadedfile.zip");
一种解决方案可能是使用 UrlMon:
另一个可能是 WebResponse.ContentType:
我相信后者只是 WebClient 响应标头的一部分:
尝试最有前途的,让我们知道你发现了什么!