java实现从服务器下载文件到本地指定目录

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;

/**
	     * 根据指定URL将文件下载到指定目标位置
	     * urlPath  下载路径
	     * downloadDir 文件存放目录
	     * @return
	     */
	    public String downloadFile(HttpServletRequest request,String urlPath){
	        File file = null;
	        try {
	            // 统一资源
	            if (StringUtils.isNotEmptyObject(PropertiesUtil.FILE_SAVE_PATH)) {
	//                urlPath = PropertiesUtil.FILE_SAVE_PATH + urlPath;
	                urlPath = "http://172.16.2.215:7777/" + urlPath;
	            }else{
	                urlPath =   request.getSession().getServletContext().getRealPath("")+urlPath;
	            }
	            // 统一资源
	            URL url = new URL(urlPath);
	            // 连接类的父类,抽象类
	            URLConnection urlConnection = url.openConnection();
	            // http的连接类
	            HttpURLConnection httpURLConnection = (HttpURLConnection) urlConnection;
	            //设置超时
	            httpURLConnection.setConnectTimeout(1000*5);
	            //设置请求方式,默认是GET
	            httpURLConnection.setRequestMethod("GET");
	            // 设置字符编码
	            httpURLConnection.setRequestProperty("Charset", "UTF-8");
	            httpURLConnection.connect();
	            int fileLength = httpURLConnection.getContentLength();
	            BufferedInputStream bin = new BufferedInputStream(httpURLConnection.getInputStream());
	            String fileFullName = urlPath.substring(urlPath.lastIndexOf("/"));
	            // 指定存放位置
	            String path = "C:" + File.separatorChar + fileFullName;
	            file = new File(path);
	            // 校验文件夹目录是否存在,不存在就创建一个目录
	            if (!file.getParentFile().exists()) {
	                file.getParentFile().mkdirs();
	            }
	            OutputStream out = new FileOutputStream(file);
	            int size = 0;
	            int len = 0;
	            byte[] buf = new byte[2048];
	            while ((size = bin.read(buf)) != -1) {
	                len += size;
	                out.write(buf, 0, size);
	                System.out.println("下载了-------> " + len * 100 / fileLength + "%\n");
	            }
	            System.out.println("C:"+ File.separatorChar + urlPath.substring(urlPath.lastIndexOf("/")).split("/")[1]);
	            bin.close();
	            out.close();
	            System.out.println("文件下载成功!");
	        } catch (Exception e) {
	            System.out.println("文件下载失败!");
	            e.printStackTrace();
	        }finally {
	            return "C:"+ File.separatorChar + urlPath.substring(urlPath.lastIndexOf("/")).split("/")[1];
	        }
	    }
  • 6
    点赞
  • 61
    收藏
    觉得还不错? 一键收藏
  • 7
    评论
评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值