java实现文件上传下载功能

 更新时间:2021年08月26日 10:20:10   作者:wh456413  
这篇文章主要介绍了java实现文件上传下载功能,上传单个或多个文件,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了java实现文件上传下载的具体代码,供大家参考,具体内容如下

1.上传单个文件

Controller控制层

import java.io.File;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;

@Controller
@RequestMapping("testup")
public class UploadController {
    private static Logger LG= LoggerFactory.getLogger(UploadController.class);
    /**
     * 9.①单个文件上传
     * @param file
     * @param redirectAttributes
     * @return
     */
    @RequestMapping(value="/upload",method=RequestMethod.POST,consumes="multipart/form-data")
    public String uploadFile(@RequestParam MultipartFile file,RedirectAttributes redirectAttributes){
        if(file.isEmpty()){
            redirectAttributes.addFlashAttribute("message", "Plse select file");
            return "redirect:/test/index";
        }
        try {
            String fileName=file.getOriginalFilename();
            /*上传文件存储位置*/
            String destFileName="D:\\whupload"+File.separator+fileName;
            File destFile=new File(destFileName);
            file.transferTo(destFile);
            //文件上传成功显示
            //redirectAttributes.addAttribute("message","upload file success.");
            redirectAttributes.addFlashAttribute("message", "upload file success.");
        } catch (Exception e) {
            //文件上传失败显示
            redirectAttributes.addFlashAttribute("message", "upload file fail");
            LG.debug(e.getMessage());
        }
        return "redirect:/test/index";
    }

}

前端页面源码

<p>上传文件,使用multipart/form-data类型</p>
  <form action="/testup/upload" method="post" enctype="multipart/form-data">
        <input type="file" name="file">
        <button type="submit">上传</button>
</form>

2.上传多个文件

Controller控制层

import java.io.File;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;

@Controller
@RequestMapping("testup")
public class UploadController {
    private static Logger LG= LoggerFactory.getLogger(UploadController.class);
  

    /**
     * 9.②多个文件上传
     */
    @RequestMapping(value="/uploadBatchFile",method=RequestMethod.POST,consumes="multipart/form-data")
    public String uploadBatchFile(@RequestParam MultipartFile[] files,RedirectAttributes redirectAttributes){
        boolean isEmpty=true;
        try {
            for (MultipartFile multipartFile : files) {
                if(multipartFile.isEmpty()){
                    continue;
                }
                String fileName=multipartFile.getOriginalFilename();
                String destFileName="D:\\whupload"+File.separator+fileName;
                File destFile=new File(destFileName);
                multipartFile.transferTo(destFile);
                isEmpty=false;
            }
            //int i=1/0;
            //localhost:8086/test/index?message=upload file success
            //redirectAttributes.addAttribute("message","upload file success.");

        } catch (Exception e) {
            // TODO Auto-generated catch block
            redirectAttributes.addFlashAttribute("message", "upload file fail");
            LG.debug(e.getMessage());
            return "redirect:/test/index";
        }
        if(isEmpty){
            redirectAttributes.addFlashAttribute("message", "Plse select file");
        }else{
            redirectAttributes.addFlashAttribute("message", "upload file success.");
        }
        return "redirect:/test/index";
    }

    
}

前端页面源码

<form action="/testup/uploadBatchFile" method="post" enctype="multipart/form-data">
        <input type="file" name="files">
        <input type="file" name="files">
        <button type="submit">上传</button>
</form>

3.下载文件

Controller控制器

import java.io.File;
import java.net.MalformedURLException;
import java.nio.file.Paths;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.io.Resource;
import org.springframework.core.io.UrlResource;
import org.springframework.http.HttpHeaders;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@RequestMapping("testup")
public class UploadController {
    private static Logger LG= LoggerFactory.getLogger(UploadController.class);
    

    /**
     * 10.下载文件
     */
    @RequestMapping("/download")
    @ResponseBody
    public ResponseEntity<Resource> downloadFile(@RequestParam String fileName){
        try {
            Resource resource=new UrlResource(
                    //拼接下载的文件的原路径
                    Paths.get("D:/whupload"+File.separator+fileName).toUri());
            if(resource.exists() && resource.isReadable()){
                return ResponseEntity.ok()
                        .header(HttpHeaders.CONTENT_TYPE, "application/octet-stream")
                        .header(HttpHeaders.CONTENT_DISPOSITION,"attachment;filename=\""+
                                resource.getFilename()+"\"").body(resource);

            }
        } catch (MalformedURLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            LG.debug(e.getMessage());
        }
        return null;
    }
}

前端页面源码

<p>下载文件,这里设置默认下载文件为Demo.txt,fileName是下载文件名</p>
<a href="/testup/download?fileName=Demo.txt" rel="external nofollow" >download file</a>

运行效果

最后,需要注意的是,文件上传有默认的大小限制
在配置文件中加入,即可消除限制

spring.servlet.multipart.max-file-size=-1
spring.servlet.multipart.max-request-size=-1

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Java实现AWT四大事件的详细过程

    Java实现AWT四大事件的详细过程

    AWT的事件处理是一种委派式事件处理方式:普通组件(事件源)将整个事件处理委托给特定的对象(事件监听器);当该事件源发生指定的事件时,就通知所委托的事件监听器,由事件监听器来处理这个事件
    2022-04-04
  • Java计算两个日期时间之间的天数最简方法

    Java计算两个日期时间之间的天数最简方法

    这篇文章给大家分享了Java计算两个日期时间之间的天数最简单的实现方法,有兴趣的朋友可以参考学习下。
    2018-07-07
  • Java中如何将String转JSONObject

    Java中如何将String转JSONObject

    这篇文章主要介绍了Java中如何将String转JSONObject,String类型转JSONObject,下面有两种方式可以进行转换,本文结合实例代码给大家介绍的非常详细,需要的朋友可以参考下
    2023-05-05
  • Java匿名类,匿名内部类实例分析

    Java匿名类,匿名内部类实例分析

    这篇文章主要介绍了Java匿名类,匿名内部类,结合实例形式分析了Java匿名类,匿名内部类相关原理、用法及操作注意事项,需要的朋友可以参考下
    2020-04-04
  • Java 最优二叉树的哈夫曼算法的简单实现

    Java 最优二叉树的哈夫曼算法的简单实现

    这篇文章主要介绍了Java 最优二叉树的哈夫曼算法的简单实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-10-10
  • javaweb实现文件上传功能

    javaweb实现文件上传功能

    这篇文章主要为大家详细介绍了javaweb实现文件上传功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-06-06
  • 详解在Spring Boot中使用Mysql和JPA

    详解在Spring Boot中使用Mysql和JPA

    本文向你展示如何在Spring Boot的Web应用中使用Mysq数据库,也充分展示Spring Boot的优势
    2017-04-04
  • 提升性能秘密武器Java Unsafe类面试精讲

    提升性能秘密武器Java Unsafe类面试精讲

    这篇文章主要为大家介绍了提升性能秘密武器Java Unsafe类面试精讲,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-10-10
  • java 实现多个list 合并成一个去掉重复的案例

    java 实现多个list 合并成一个去掉重复的案例

    这篇文章主要介绍了java 实现多个list 合并成一个去掉重复的案例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2020-08-08
  • JVM垃圾收集器详解

    JVM垃圾收集器详解

    本文主要介绍了JVM垃圾收集器的相关知识。具有很好的参考价值,下面跟着小编一起来看下吧
    2017-02-02

最新评论