java上传文件、下载文件

本文详细介绍了使用Java在Web应用中实现文件上传和下载的方法。包括上传文件的Controller与Util,利用MultipartFile进行文件处理,生成唯一文件名,以及通过散列算法创建多级目录。同时,展示了下载文件的Controller和Util,如何设置响应头实现文件下载。
摘要由CSDN通过智能技术生成

上传文件Controller

	 /**
     * @description 文件上传
     * @author yuzk
     */
    @RequestMapping(value="/fileUpload")
    @ResponseBody
    public Map fileUpload(MultipartFile file) {
        String url = UploadUtils.uploadFileAndGetPath(file);
        //原文件名称
        String originalImgName = file.getOriginalFilename();
        Map map = new HashMap<>();
        map.put("utl",url);
        map.put("state","SUCCESS");
        map.put("fileName",originalImgName);
        return map;
    }

上传文件util

		/**
	 * 上传文件
	 * @throws Exception
	 */
	public static String uploadFileAndGetPath(MultipartFile multipartFile) {
		String filePath = "";
		try {
			// 保存文件根路径
			String fileRootPath = "F:\test\";
			// 原文件名称
			String originalImgName = multipartFile.getOriginalFilename();
			// 获取文件后缀名
			String suffix = originalImgName.substring(originalImgName.lastIndexOf("."));
			if (!StringUtils.isEmpty(originalImgName)) {
				// 重命名,防止重名
				String fileName = CommonUtil.getUniqueCode()+ suffix;
				// 根据hash散列算法生成多级目录
				String hashDir = generateRandomDir(fileName);
      			String savePath = fileRootPath + File.separator + hashDir;
				File file = new File(savePath);
				if (!file.exists()) file.mkdirs();
    			filePath = hashDir + File.separator + fileName;
				savePath = fileRootPath + filePath;
				file = new File(savePath);
				// 保存文件
				multipartFile.transferTo(file);
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
		return filePath;
	}

下载文件controller

	 /**
     * @description 文件下载
     * @param filePath 文件散列路径
     *        fileName 文件中文名称
     */
    @RequestMapping("/downloadFile")
    public void downloadFile(String filePath, String fileName,HttpServletResponse response){
        try {
            DownLoadFileUtil.downloadFile(filePath, fileName,response);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

下载文件util

	/**
	 * 文件下载
	 * @param filePath
	 * @param fileName
	 * @throws Exception
	 */
	public static void downloadFile(String filePath,String fileName,HttpServletResponse response){
		FileInputStream in = null;
		OutputStream out = null;
		try{
			filePath = "F:\test\"+ filePath;
			File file = new File(filePath);
			in = new FileInputStream(file);
			out = response.getOutputStream();
			fileName = new String(fileName.getBytes("UTF-8"), "ISO-8859-1");
			if (file.exists()) {
				response.setCharacterEncoding("UTF-8");
				response.setHeader("content-disposition", "attachment;filename="+ fileName);
				byte buffer[] = new byte[1024];
				int len = 0;
				while ((len = in.read(buffer)) > 0) {
					out.write(buffer, 0, len);
				}
			}
		}catch (Exception e){
			e.printStackTrace();
		}finally {
			try {
				if(in != null) in.close();
				if(out != null) out.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值