1

我需要从网上获取图像并将其存储在手机中以备后用。

我试过这个:

 public Drawable grabImageFromUrl(String url) throws Exception
    {
     return Drawable.createFromStream((InputStream)new URL(url).getContent(), "src");
    }

所以这是我从 Url 获取图像的函数,我只需要一个过程来获取返回的可绘制对象并保存。

我怎样才能做到这一点 ?

4

2 回答 2

3

根据此处,您实际上可以使用不同的方法下载图像。在保存之前将其存储为可绘制对象是绝对必要的吗?因为我认为您可以先保存它,然后在需要时打开它。

URL url = new URL ("file://some/path/anImage.png");
InputStream input = url.openStream();
try {
    //The sdcard directory e.g. '/sdcard' can be used directly, or 
    //more safely abstracted with getExternalStorageDirectory()
    String storagePath = Environment.getExternalStorageDirectory();
    OutputStream output = new FileOutputStream (storagePath + "/myImage.png");
    try {
        byte[] buffer = new byte[aReasonableSize];
        int bytesRead = 0;
        while ((bytesRead = input.read(buffer, 0, buffer.length)) >= 0) {
            output.write(buffer, 0, bytesRead);
        }
    } finally {
        output.close();
    }
} finally {
    input.close();
}
于 2012-04-05T14:01:22.223 回答
3

在这里看到这个完整的例子

http://android-example-code.blogspot.in/p/download-store-and-read-images-from.html

于 2012-04-05T14:05:41.987 回答