检测指定的网址是否为Android中的图片?

时间:2010-08-10 21:35:48

标签: android image http url

如何快速检测指定的网址是否包含Android中的图片?

我有http://foo.bar/w23afv类型的链接,所以像检查URL字符串结尾这样天真的方法在这里不起作用。

1 个答案:

答案 0 :(得分:30)

检查HTTP Content-Type响应标头是否以image/开头。

URLConnection connection = new URL("http://foo.bar/w23afv").openConnection();
String contentType = connection.getHeaderField("Content-Type");
boolean image = contentType.startsWith("image/");