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.
我正在尝试从 URL 下载图像,如果是 gif,我将对其进行转换,否则,我将保持原样。但是,很像这个问题(它实际上是为了解决同样的问题),我有不包含文件扩展名的 URL,所以我需要以某种方式确定文件类型的另一种方式。
最好的方法是什么?使用标头可能很容易,但由于我知道 URL 必须涉及重定向才能真正访问文件,所以我不确定测试它的最佳方法是什么?
只需向 URL 发送请求,遵循任何返回的重定向(您的 HTTP 客户端应该为您执行此操作),然后读取Content-Type标头。 请注意,标头不能被信任;恶意服务器或代理可以设置它想要的任何标头。
Content-Type