Skip to content

Latest commit

 

History

History
 
 

io-download-picture

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

给定url和路径下载图片

快速开始

public class DownloadPicTest {
    public static void main(String[] args) {
        String url = "http://lorempixel.com/1600/900";
        String path="/users/gaohanghang/download/";
        DownloadPicFromURL.downloadPicture(url,path + UUID.randomUUID() + ".jpg");
    }
}

运行后示例