Java 从网络上下载文件

来源:互联网 发布:远程桌面数据加密错误 编辑:程序博客网 时间:2024/05/02 04:34
/**
 * 下载文件到本地 
 */
public static void downloadPicture(String imageUrl, String filename){  
    URL url;
try {
url = new URL(imageUrl);
  //打开网络输入流
    DataInputStream dis = new DataInputStream(url.openStream());
    //建立一个新的文件
    FileOutputStream fos = new FileOutputStream(new File(filename));
    byte[] buffer = new byte[1024];
    int length;
    //开始填充数据
    while((length = dis.read(buffer))>0){
     fos.write(buffer,0,length);
    }
    dis.close();
    fos.close();
} catch (Exception e) {
e.printStackTrace();
}
  
}
0 0
原创粉丝点击