gpt4 book ai didi

c# - 如何获取网址的内容类型?

转载 作者:太空狗 更新时间:2023-10-29 18:16:32 24 4
gpt4 key购买 nike

我想获取网址类型。例如this是一个Html页面,它的页面类型是text/html但是this 的类型是 text/xmlthis页面的类型似乎是 image/png 但它是 text/html

我想知道如何检测像 this 这样的网址的内容类型?

最佳答案

应该是这样的

    var request = HttpWebRequest.Create("http://www.google.com") as HttpWebRequest;
if (request != null)
{
var response = request.GetResponse() as HttpWebResponse;

string contentType = "";

if (response != null)
contentType = response.ContentType;
}

关于c# - 如何获取网址的内容类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11945201/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com