byte[] buff = new byte[1024]
int hasRead = 0
while((hasRead = is.read(buff)) >0){
os.write(buff, 0, hasRead)
}
is.close()
os.close()
你这里不是已经存汪档文件了吗橘桥,只是这种是存在app的私有目录中
如果要存在指定位置,就圆陵猛用
FileOutputStream fout = new FileOutputStream(path,append)
这种啊
1、首先你有一个保存图片的散逗袜路径 filePath
还有一个现在图片的链接 url
String filePath="...."指困String url="...."
bytes[] b=new bytes[1024]
File file=new File(filePath)
FileOutputStream fs=new FileOutputStream(file)
InputStream in=new URL(url)
while(in.read(b)){
fs.wirte(b)
}
Bitmap 冲激bitmap=BitmmapFactory.decodeStream(in)
imageView.setBitmapResource()
大概就是这样详细的你自己弄吧
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)