网络资源(图片)下载到本地

时间:2022-11-26 11:06:22
headImgUrl = request.getSession().getAttribute("headImgUrl").toString();// 微信头像
// 把微信头像下载到本地
// 构造URL
if(headImgUrl != null){
URL imageUrl = new URL(headImgUrl);
// 打开连接
URLConnection con = imageUrl.openConnection();
// 输入流
InputStream is = con.getInputStream();
// 1K的数据缓冲
byte[] bs = new byte[1024];
// 读取到的数据长度
int len;
File file = new File(this.fileService.getAbsPath()
+ "/upload/wechatCode/headImageUrl/");
if (!file.exists()) {
file.mkdirs();
}
// 输出的文件流
OutputStream os = new FileOutputStream(this.fileService.getAbsPath()
+ "/upload/wechatCode/headImageUrl/" + openid + ".jpg");
// 开始读取
while ((len = is.read(bs)) != -1) {
os.write(bs, 0, len);
}
// 完毕,关闭所有链接
os.close();
is.close();