spring MVC 实现文件上传

5 篇文章 0 订阅
4 篇文章 1 订阅

spring MVC 实现文件上传

首先引入jar包

commons-io-1.3.2.jar
commons-fileupload-1.2.1.jar

配置文件解析

<bean id="multipartResolver"  
        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">  
        <!-- 上传文件大小上限,单位为字节(10MB) -->
        <property name="maxUploadSize">  
            <value>10485760</value>  
        </property>  
        <!-- 请求的编码格式,必须和jSP的pageEncoding属性一致,以便正确读取表单的内容,默认为ISO-8859-1 -->
        <property name="defaultEncoding">
            <value>UTF-8</value>
        </property>  
    </bean>

控制层

@RequestMapping(value = "/photoUpload", method = RequestMethod.POST)
    @ResponseBody
    public JSONObject upload(HttpServletRequest request, String mobile, @RequestParam("file") MultipartFile file)
            throws Exception {

    File newFile = new File(request.getServletContext().getRealPath("/"));
        // 获取当前项目的父文件位置
        File parentFile = newFile.getParentFile();
        String path = parentFile.getAbsolutePath() + PropertiesUtil.getValue(imageCode);

    File filepath = new File(path);
            // 获取图片名称
            String filename = file.getOriginalFilename();

            // 获取后缀
            String fileType = filename.substring(filename.indexOf("."), filename.length());
            // jpg、jpeg、png
            // 判断文件格式是否可用

            List<String> types = new ArrayList<String>();

            types.add(".jpg");
            types.add(".png");
            types.add(".jpeg");
            types.add(".mp4");
            types.add(".mp3");
            types.add(".avi");
            types.add(".mov");
            types.add(".wmv");
            types.add(".rm");
            types.add(".rmvb");
            types.add(".vcd");
            types.add(".svcd");



            if (!types.contains(fileType)) {
                // 图片不可用
                return null;
            }

            // 判断路径是否存在,如果不存在就创建一个
            if (!filepath.exists()) {
                filepath.mkdirs();
            }
            // 将图片名称编码以免重复
            String firstName = MD5.getMD5Str(filename + new Date().getTime());
            String fileName = firstName + fileType;
            // 将上传图片保存到一个目标文件夹当中
            file.transferTo(new File(path + File.separator + fileName));
            filePath = fileName;
            System.out.println(path + File.separator + fileName);
}

工具

public static String getFileUpladName(HttpServletRequest request, @RequestParam("files") MultipartFile file,
            String imgCode) {

        String fileNewName = "";

        try {
            // 调用业务层

            if (StringUtils.isBlank(imgCode)) {
                // 没有输入图片保存类型
                return null;
            }

            if (file.isEmpty()) {
                // 图片为空
                return null;
            }
            // String imgCode = "userPhotoPath";
            // 获取图片保存路径
            String path = getFilePath(request, imgCode);
            // 图片上传
            fileNewName = fileUpload(file, path);

        } catch (Exception e) {
            e.printStackTrace();
        }

        return fileNewName;

    }

    /**
     * 
     * @Description: 获取图片保存路径
     * @CreateTime: 2018年2月24日 上午10:14:27
     */
    public static String getFilePath(HttpServletRequest request, String imageCode) {

        File newFile = new File(request.getServletContext().getRealPath("/"));
        // 获取当前项目的父文件位置
        File parentFile = newFile.getParentFile();
        String path = parentFile.getAbsolutePath() + PropertiesUtil.getValue(imageCode);

        return path;
    }

    /**
     * 
     * @Description: 图片上传
     * @CreateTime: 2018年2月24日 上午10:09:34
     */
    public static String fileUpload(MultipartFile file, String path) {

        String filePath = "";

        try {
            File filepath = new File(path);
            // 获取图片名称
            String filename = file.getOriginalFilename();

            // 获取后缀
            String fileType = filename.substring(filename.indexOf("."), filename.length());
            // jpg、jpeg、png
            // 判断文件格式是否可用

            List<String> types = new ArrayList<String>();

            types.add(".jpg");
            types.add(".png");
            types.add(".jpeg");
            types.add(".mp4");
            types.add(".mp3");
            types.add(".avi");
            types.add(".mov");
            types.add(".wmv");
            types.add(".rm");
            types.add(".rmvb");
            types.add(".vcd");
            types.add(".svcd");



            if (!types.contains(fileType)) {
                // 图片不可用
                return null;
            }

            // 判断路径是否存在,如果不存在就创建一个
            if (!filepath.exists()) {
                filepath.mkdirs();
            }
            // 将图片名称编码以免重复
            String firstName = MD5.getMD5Str(filename + new Date().getTime());
            String fileName = firstName + fileType;
            // 将上传图片保存到一个目标文件夹当中
            file.transferTo(new File(path + File.separator + fileName));
            filePath = fileName;
            System.out.println(path + File.separator + fileName);
        } catch (IllegalStateException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return filePath;
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
第1个上组件commons-fileupload =============commons-fileupload ================ common-fileupload组件是apache的一个开源项目之一,可以从http://jakarta.apache.org/commons/fileupload/下载。该组件简单易用,可实现一次上一个或多个文件,并可限制文件大小。 -下载后解压zip包,将commons-fileupload-1.1.1.jar,和commons-io-1.2.jar(这里我们用的是更新的版本,但是用法是一样的)复制到tomcat的webapps\你的webapp\WEB-INF\lib\下,如果目录不存在请自建目录。 新建一个servlet: FileUpload.java用于文件: package com.drp.util.servlet; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.fileupload.*; import java.util.*; import java.util.regex.*; import java.io.*; import org.apache.commons.fileupload.servlet.*; import org.apache.commons.fileupload.disk.DiskFileItemFactory; public class FileUpload extends HttpServlet { private String uploadPath = ""; // 用于存放上文件的目录 private File tempPath = new File("D:\\Tomcat 5.5\\webapps\\drp1.2\\tempimages\\"); // 用于存放临时文件的目录 public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { res.setContentType("text/html; charset=GB18030"); PrintWriter out = res.getWriter(); System.out.println(req.getContentLength()); System.out.println(req.getContentType()); DiskFileItemFactory factory = new DiskFileItemFactory(); // maximum size that will be stored in memory //允许设置内存中存储数据的门限,单位:字节 factory.setSizeThreshold(4096); // the location for saving data that is larger than getSizeThreshold() //如果文件大小大于SizeThreshold,则保存到临时目录 factory.setRepository(new File("D:\\Tomcat 5.5\\webapps\\drp1.2\\tempimages")); ServletFileUpload upload = new ServletFileUpload(factory); // maximum size before a FileUploadException will be thrown //最大上文件,单位:字节 upload.setSizeMax(1000000); try { List fileItems = upload.parseRequest(req); // assume we know there are two files. The first file is a small //
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值