如何从下方网址加载图片。 http://images.google.com/hosted/life/l?imgurl=46d75bbfa52a8450
我使用Google自定义搜索API来搜索网站images.google.com中的图片。 它将返回一个包含link标签内容的json文件。示例:http://images.google.com/hosted/life/l?imgurl=46d75bbfa52a8450。我想将它加载到我的视图中。
如果URL是endwith file extends“.jpg或.png”,我可以下载并显示它。 但如果没有,我可以得到图像。 任何人都可以帮助我。
答案 0 :(得分:1)
您好请使用以下代码。
String url = "http://images.google.com/hosted/life/l?imgurl=46d75bbfa52a8450";
InputStream ins = null;
try {
ins = new java.net.URL(url).openStream();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
Bitmap b = BitmapFactory.decodeStream(new FlushedInputStream(ins));
imageview.setImageBitmap(b);
static class FlushedInputStream extends FilterInputStream {
public FlushedInputStream(InputStream inputStream) {
super(inputStream);
}
@Override
public long skip(long n) throws IOException {
long totalBytesSkipped = 0L;
while (totalBytesSkipped < n) {
long bytesSkipped = in.skip(n - totalBytesSkipped);
if (bytesSkipped == 0L) {
int b = read();
if (b < 0) {
break; // we reached EOF
} else {
bytesSkipped = 1; // we read one byte
}
}
totalBytesSkipped += bytesSkipped;
}
return totalBytesSkipped;
}
}