Java实现文件上传下载

该代码示例展示了如何在Java中处理文件上传和下载。saveFile方法用于保存上传的文件,它接收MultipartFile对象、保存路径和文件名作为参数。downloadFile方法处理文件下载,通过HttpServletResponse设置响应头并提供文件内容。
摘要由CSDN通过智能技术生成

1. 文件上传

public static void saveFile(MultipartFile multipartFile, String savepath, String fileName){
    File file = new File(savepath);
    if (!file.exists()){
        file.mkdirs();
    }
    File files = new File(savepath, fileName);
    try {
        multipartFile.transferTo(files);
    } catch (IOException e) {
        e.printStackTrace();
    }
}

2. 文件下载

/**
 * 下载文件
 * @param response
 * @param filePath 文件路径
 */
 public static void downLoadFile(HttpServletResponse response, String filePath) {
     File file = new File(filePath);
     if (!file.exists()) {
         throw new RRException("文件不存在或已被删除");
     }
     FileInputStream fis = null;
     BufferedOutputStream bos = null;
     BufferedInputStream bis = null;
     try {
     	 response.setCharacterEncoding("utf-8");
	     response.setContentType("application/octet-stream;charset=UTF-8");
	     response.setHeader("Content-Disposition", "attachment;FileName=" + URLEncoder.encode(file.getName(), "UTF-8"));
	     response.addHeader("Content-Length", "" + file.length());
	     fis = new FileInputStream(file);
	     bis = new BufferedInputStream(fis);
	     bos = new BufferedOutputStream(response.getOutputStream());
	     int length;
	     byte[] buffer = new byte[1024];
	     while ((length = bis.read(buffer)) != -1) {
	         bos.write(buffer, 0, length);
	         bos.flush();
		 }
	} catch (FileNotFoundException e) {
	    e.printStackTrace();
	} catch (IOException e) {
	    e.printStackTrace();
	} finally {
	    try {
	        if (fis != null) {
	            fis.close();
	        }
	        if (bis != null) {
	            bis.close();
	        }
	        if (bos != null) {
	            bos.close();
	        }
	    } catch (IOException e) {
	        e.printStackTrace();
	    }
	}
 }

response的contentType

application/xhtml+xml 		XHTML格式
application/xml     		XML数据格式
application/atom+xml  		Atom XML聚合格式    
application/json    		JSON数据格式
application/pdf      		pdf格式  
application/msword  		Word文档格式
application/octet-stream 	二进制流数据(如常见的文件下载)
application/x-www-form-urlencoded : <form encType=””>中默认的encType,form表单数据被编码为key/value格式发送到服务器(表单默认的提交数据的格式)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值