idea文件上传(通俗易懂!)

一、先导入包
在build.gradle中写入一下两行代码:

//文件下载包
    compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.1'
    //文件上传包
    compile group: 'commons-io', name: 'commons-io', version: '2.4'

二、在springmvc.xml文件中写入一下配置


    <bean id="multipartResolver"
          class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        
        <property name="maxUploadSize">
            <value>10485760value>
        property>
        
        <property name="defaultEncoding">
            <value>UTF-8value>
        property>
    bean>

三、在Tomcat中配置文件的虚拟路径(建议不要放在项目中,因为文件一多,所占空间会大)
在idea右上角点击:Edit Configurations
idea文件上传(通俗易懂!)_第1张图片

选中tomat后,点击Deployment,再点绿色+号创建文件下载路径(你要下载文件的文件夹),然后右上角的Application context 填要下载到哪个文件夹(虚拟路径,项目中需要用到的图片等等都填这个路径)
idea文件上传(通俗易懂!)_第2张图片

点击APPLY,然后完成。

三、创建一个简单的JSP界面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
  <title>文件上传title>
head>
<body>
<form action="/fileUpload" enctype="multipart/form-data" method="post">
  <p>上传人:<input id="name" type="text" name="name"/>p>
  <p>请选择文件:<input id="file" type="file" name="uploadfile"
                  multiple="multiple"/>p>
  <p> <input type="submit" value="上传"/>p>
form>
body>
html>

效果图:
idea文件上传(通俗易懂!)_第3张图片

四、创建一个fileInputController.java

package com.edusoft.controller;

import org.apache.commons.io.FileUtils;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
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.multipart.MultipartFile;

import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.net.URLEncoder;
import java.util.List;
import java.util.UUID;

@Controller
public class FileInputController {
    /**
     * 执行文件上传
     */
    @RequestMapping("/fileUpload")
    public String handleFormUpload(@RequestParam(required = false,value = "name") String name,
                                   @RequestParam("uploadfile") List uploadfile,
                                   HttpServletRequest request) {
        // 判断所上传文件是否存在
        if (!uploadfile.isEmpty() && uploadfile.size() > 0) {
            //循环输出上传的文件
            for (MultipartFile file : uploadfile) {
                // 获取上传文件的原始名称
                String originalFilename = file.getOriginalFilename();
                // 设置上传文件的保存地址目录
 //               String dirPath =
 //                     request.getSession().getServletContext().getRealPath("/upload/");
                String dirPath = "d:/upload/";
//                String dirPath =
 //                       request.getServletContext().getRealPath("/upload/");
                File filePath = new File(dirPath);
                // 如果保存文件的地址不存在,就先创建目录
                if (!filePath.exists()) {
                    filePath.mkdirs();
                }
                // 使用UUID重新命名上传的文件名称(上传人_uuid_原始文件名称)
                String newFilename = name+ "_"+ UUID.randomUUID() +
                        "_"+originalFilename;
                try {
                    // 使用MultipartFile接口的方法完成文件上传到指定位置
                    file.transferTo(new File(dirPath + originalFilename));
                } catch (Exception e) {
                    e.printStackTrace();
                    return"error";
                }
            }
            // 跳转到成功页面
            return "/success";
        }else{
            return"/error";
        }
    }

//以下是关于下载文件的,需要可以用,原理差不多,在这里就不讲了,再下面还有一下关于编码格式问题。重点看上面就好。

    //  @RequestMapping("/download")
//  public ResponseEntity fileDownload(HttpServletRequest request,
//                                             String filename) throws Exception{
//      // 指定要下载的文件所在路径
//      String path = request.getServletContext().getRealPath("/upload/");
//      // 创建该文件对象
//      File file = new File(path+File.separator+filename);
//      // 设置响应头
//      HttpHeaders headers = new HttpHeaders();
//      // 通知浏览器以下载的方式打开文件
//      headers.setContentDispositionFormData("attachment", filename);
//      // 定义以流的形式下载返回文件数据
//      headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
//      // 使用Sring MVC框架的ResponseEntity对象封装返回下载数据
//     return new ResponseEntity(FileUtils.readFileToByteArray(file),
//                                                         headers,HttpStatus.OK);
//  }

    @RequestMapping("/download")
    public ResponseEntity<byte[]> fileDownload(HttpServletRequest request,
                                               String filename) throws Exception{
        // 指定要下载的文件所在路径
        String path = request.getServletContext().getRealPath("/upload/");
        // 创建该文件对象
        File file = new File(path+File.separator+filename);
        // 对文件名编码,防止中文文件乱码
        filename = this.getFilename(request, filename);
        // 设置响应头
        HttpHeaders headers = new HttpHeaders();
        // 通知浏览器以下载的方式打开文件
        headers.setContentDispositionFormData("attachment", filename);
        // 定义以流的形式下载返回文件数据
        headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
        // 使用Sring MVC框架的ResponseEntity对象封装返回下载数据
        return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file),
                headers, HttpStatus.OK);
    }
    /**
     * 根据浏览器的不同进行编码设置,返回编码后的文件名
     */
    public String getFilename(HttpServletRequest request,
                              String filename) throws Exception {
        // IE不同版本User-Agent中出现的关键词
        String[] IEBrowserKeyWords = {"MSIE", "Trident", "Edge"};
        // 获取请求头代理信息
        String userAgent = request.getHeader("User-Agent");
        for (String keyWord : IEBrowserKeyWords) {
            if (userAgent.contains(keyWord)) {
                //IE内核浏览器,统一为UTF-8编码显示
                return URLEncoder.encode(filename, "UTF-8");
            }
        }
        //火狐等其它浏览器统一为ISO-8859-1编码显示
        return new String(filename.getBytes("UTF-8"), "ISO-8859-1");
    }


}


五、创建两个JSP界面,success.jsp, error.jsp。上传文件成功则会返回success.jsp。失败则会返回error.jsp。
运行结果:
idea文件上传(通俗易懂!)_第4张图片

上传成功后:
idea文件上传(通俗易懂!)_第5张图片

本人IT行业还没毕业,有误请各位大佬指责。。

你可能感兴趣的:(文件上传,idea,java,上传图片)