从阿里云下载图片到本地

Posted 一个九

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从阿里云下载图片到本地相关的知识,希望对你有一定的参考价值。

下载图片


import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;


public
static void main(String[] args) { // TODO Auto-generated method stub
    //图片线上地址:xxx
File file1=new File("xxx"); String name = file1.getName(); File file2=new File("F:\\bbb\\"+name);//本地地址 try { URL url = new URL("https://hlww.oss-cn-shanghai.aliyuncs.com/hlww/pic/img_32_1521892791.jpeg "); BufferedInputStream in = new BufferedInputStream(url.openStream()); FileOutputStream out = new FileOutputStream(file2); int t; while ((t = in.read()) != -1) { out.write(t); } out.close(); in.close(); System.out.println("图片获取成功"); }catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (MalformedURLException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } catch (IOException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } System.out.println("fileName:"+name); String prefix1=name.substring(name.lastIndexOf(".")); System.out.println(prefix1+"....."); }

 

以上是关于从阿里云下载图片到本地的主要内容,如果未能解决你的问题,请参考以下文章

Laravel 上传文件到阿里云

根据图片的url地址下载图片到本地保存代码片段

阿里云code下载代码和更新代码

阿里云RDS同步到本地自建mysql数据库从库

如何将本地代码文件上传到阿里云的git上面

请问储存在阿里云的数据如何下载到本地电脑