如何快速检测指定的网址是否包含Android中的图片?
我有http://foo.bar/w23afv
类型的链接,所以像检查URL字符串结尾这样天真的方法在这里不起作用。
答案 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/");