我从网络解析一个 xml 文件
它有一个像这样的图片网址:http://xxxxxx.jpg
然后我用一个
私人字符串 url_picture = " http://xxxxx.jpg ";
我想将图片存储到设备中
我能怎么做?
我从网络解析一个 xml 文件
它有一个像这样的图片网址:http://xxxxxx.jpg
然后我用一个
私人字符串 url_picture = " http://xxxxx.jpg ";
我想将图片存储到设备中
我能怎么做?
我编写了这段代码来接收来自 url 的图像。如果您检查此链接,它会告诉您如何将其保存在 sd-card存储位图图像到 Android 中的 SD 卡
private Bitmap getBitmap(String str, Options options) {
// TODO Auto-generated method stub
Bitmap bm = null;
InputStream inStream = null;
try {
inStream = HttpConnection(str);
bm = BitmapFactory.decodeStream(inStream, null, options);
inStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return bm;
}