单文件上传/下载

1.添加依赖

<!-- 文件上传 -->
<dependency>
    <groupId>commons-fileupload</groupId>
    <artifactId>commons-fileupload</artifactId>
    <version>1.3.1</version>
</dependency>

2.jsp页面开发

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%
    String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort();
%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>上传文件</title>
    </head>
    <body>
        <form action="<%=basePath%>/upload" method="post" enctype="multipart/form-data">
            上传文件:<input type="file" name="uploadFile">
            <br>
            <input type="submit" value="上传">
            <br>
            下载文件:<a href="<%=basePath%>/download">下载</a>
        </form>
    </body>
</html>

3.开发文件处理类

@Controller
public class FileController {
    //显示文件上传页面
    @RequestMapping(value = "/display")
    public ModelAndView display(){
        ModelAndView modelAndView = new ModelAndView();
        modelAndView.setViewName("items/upload");
        return modelAndView;
    }

    //上传处理(web版)
    @RequestMapping(value = "/upload")
    public ModelAndView upload(@RequestParam("uploadFile")MultipartFile file) throws Exception {
        ModelAndView modelAndView = new ModelAndView();
        if (!file.isEmpty()) {
            //1.取文件格式后缀名
            String type = file.getOriginalFilename().substring(file.getOriginalFilename().indexOf("."));
            //2.取当前时间戳作为文件名
            String fileName = System.currentTimeMillis() + type;
            //3.设置存放位置
            String path = "E:\\代码存档\\springmvc\\springMVC_demo\\src\\main\\java\\com\\steven\\ssm\\upload\\" + fileName;
            //4.创建文件
            File destFile = new File(path);
            try {
                //5.复制临时文件到指定目录下
                //FileUtils.copyInputStreamToFile()这个方法里对IO进行了自动操作,不需要额外的再去关闭IO流
                FileUtils.copyInputStreamToFile(file.getInputStream(), destFile);
            } catch (IOException e) {
                e.printStackTrace();
            }
            modelAndView.setViewName("items/success");
        } else {
            modelAndView.setViewName("items/failed");
        }
        return modelAndView;
    }
    
    //上传处理(restful版)
    @RequestMapping(value = "/upload",method = RequestMethod.POST)
    @ResponseBody
    public WebResult upload(@RequestParam("uploadFile")MultipartFile file) throws Exception {
        WebResult result = WebResultHelper.newResult();
        if (!file.isEmpty()) {
            //1.取文件格式后缀名
            String type = file.getOriginalFilename().substring(file.getOriginalFilename().indexOf("."));
            //2.取当前时间戳作为文件名
            String fileName = System.currentTimeMillis() + type;
            //3.设置存放位置
            String path = "E:\\代码存档\\springmvc\\springMVC_demo\\src\\main\\java\\com\\steven\\ssm\\upload\\" + fileName;
            //4.创建文件
            File destFile = new File(path);
            try {
                //5.复制临时文件到指定目录下
                //FileUtils.copyInputStreamToFile()这个方法里对IO进行了自动操作,不需要额外的再去关闭IO流
                FileUtils.copyInputStreamToFile(file.getInputStream(), destFile);
            } catch (IOException e) {
                e.printStackTrace();
            }
            result.put("message","upload success!");
        } else {
            result.put("message","upload failed!");
        }
       return  result;
    }
    
    //下载文件
    //匹配的是href中的download请求
    @RequestMapping(value="/download",method= RequestMethod.GET)
    public ResponseEntity<byte[]> download(HttpServletRequest request) throws IOException{
        String downloadFilePath="E:\\代码存档\\springmvc\\springMVC_demo\\src\\main\\java\\com\\steven\\ssm\\upload\\1542372933774.xls";
        File file = new File(downloadFilePath);
        //http头信息
        HttpHeaders headers = new HttpHeaders();
        //设置编码
        String downloadFileName = new String("1542372933774.xls".getBytes("UTF-8"),"iso-8859-1");
        headers.setContentDispositionFormData("attachment", downloadFileName);
        headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
        //MediaType:互联网媒介类型  contentType:具体请求中的媒体类型信息
        return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file),headers, HttpStatus.CREATED);
    }
}

4.springmvc.xml中添加配置

<!-- 配置文件处理 -->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"/>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值