文件上传之 MultipartFile

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件上传之 MultipartFile相关的知识,希望对你有一定的参考价值。

利用MultipartFile(组件)实现文件上传

         在java中上传文件似乎总有点麻烦,没.net那么简单,记得最开始的时候用smartUpload实现文件上传,最近在工作中使用spring的MultipartFile实现文件上传,感觉挺简单,在这里和大家分享一下.

一.主要有两个java类,和一般的servlet放在一起即可.

1.FileUploadBean.java

技术分享package chb.demo.web;
技术分享
技术分享import org.springframework.web.multipart.MultipartFile;
技术分享
技术分享
技术分享public class FileUploadBean {
技术分享
技术分享    private MultipartFile file;
技术分享
技术分享    public void setFile(MultipartFile file) {
技术分享        this.file = file;
技术分享    }
技术分享
技术分享    public MultipartFile getFile() {
技术分享        return file;
技术分享    }
技术分享}

2.FileUploadController.java

技术分享package chb.demo.web;
技术分享
技术分享import java.io.FileOutputStream;
技术分享import java.io.IOException;
技术分享import java.io.InputStream;
技术分享
技术分享import javax.servlet.http.HttpServletRequest;
技术分享import javax.servlet.http.HttpServletResponse;
技术分享
技术分享import org.springframework.validation.BindException;
技术分享import org.springframework.web.multipart.MultipartFile;
技术分享import org.springframework.web.servlet.ModelAndView;
技术分享import org.springframework.web.servlet.mvc.SimpleFormController;
技术分享
技术分享
技术分享
技术分享public class FileUploadController extends SimpleFormController {
技术分享        
技术分享    protected ModelAndView onSubmit(
技术分享        HttpServletRequest request,
技术分享        HttpServletResponse response,
技术分享        Object command,
技术分享        BindException errors){
技术分享        
技术分享        try
技术分享        {
技术分享            // cast the bean
技术分享            FileUploadBean bean = (FileUploadBean) command;
技术分享
技术分享            // let‘s see if there‘s content there
技术分享            MultipartFile file = bean.getFile();
技术分享                               
技术分享            if (file == null{
技术分享                throw new Exception("上传失败:文件为?空");    
技术分享            }
技术分享            if(file.getSize()>10000000)        
技术分享            {
技术分享                throw new Exception("上传失败:文件大小不能超过10M");            
技术分享            }
技术分享            //得到文件?名
技术分享            String filename=file.getOriginalFilename();        
技术分享            
技术分享            if(file.getSize()>0){                
技术分享                try {
技术分享                    SaveFileFromInputStream(file.getInputStream(),"D:/",filename);
技术分享                } catch (IOException e) {
技术分享                    System.out.println(e.getMessage());
技术分享                    return null;
技术分享                }
技术分享            }
技术分享            else{
技术分享                throw new Exception("上传失败:上传文件不能为?空");
技术分享            }
技术分享            // well, let‘s do nothing with the bean for now and return:
技术分享            try {
技术分享                return super.onSubmit(request, response, command, errors);
技术分享                
技术分享            } catch (Exception e) {
技术分享                System.out.println(e.getMessage());
技术分享                return null;
技术分享            }
技术分享        }
技术分享        catch(Exception ex)
技术分享        {
技术分享            System.out.println(ex.getMessage());
技术分享            return null;
技术分享        }
技术分享    }   
技术分享    
技术分享    
技术分享    public void SaveFileFromInputStream(InputStream stream,String path,String filename) throws IOException
技术分享    {      
技术分享        FileOutputStream fs=new FileOutputStream( path + "/"+ filename);
技术分享        byte[] buffer =new byte[1024*1024];
技术分享        int bytesum = 0;
技术分享        int byteread = 0
技术分享        while ((byteread=stream.read(buffer))!=-1)
技术分享        {
技术分享           bytesum+=byteread;            fs.write(buffer,0,byteread);            fs.flush();         }          fs.close();         stream.close();           }        }

二.配置文件中如下配置:

1.web.xml,利用spring mvc模式,大家应该都很熟悉了

技术分享    <servlet>
技术分享        <servlet-name>chb</servlet-name>
技术分享        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
技术分享        <load-on-startup>1</load-on-startup>
技术分享    </servlet>
技术分享
技术分享    <servlet-mapping>
技术分享        <servlet-name>chb</servlet-name>
技术分享        <url-pattern>*.do</url-pattern>
技术分享    </servlet-mapping>

2.chb-servlet.xml,这里要配置映射,并可以设定最大可上传文件的大小

技术分享<?xml version="1.0" encoding="UTF-8"?>
技术分享<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
技术分享<beans>
技术分享    <!-- Multi-Action 用来标识method的变量名定义-->
技术分享    <bean id="methodNameResolver" class="org.springframework.web.servlet.mvc.multiaction.ParameterMethodNameResolver">
技术分享        <property name="paramName">
技术分享            <value>action</value>
技术分享        </property>
技术分享        <property name="defaultMethodName">
技术分享            <value>index</value>
技术分享        </property>
技术分享    </bean>
技术分享    
技术分享    <bean id="multipartResolver"  class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
技术分享        <!-- one of the properties available; the maximum file size in bytes -->
技术分享        <property name="maxUploadSize" value="10000000"/>
技术分享    </bean>
技术分享    
技术分享
技术分享    <bean id="handlerMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
技术分享        <property name="mappings">
技术分享          <props>
技术分享            <prop key="/upload.do">fileUploadController</prop>
技术分享          </props>
技术分享        </property>
技术分享    </bean>
技术分享    
技术分享    <bean id="fileUploadController" class="chb.demo.web.FileUploadController">
技术分享        <property name="commandClass" value="chb.demo.web.FileUploadBean"/>
技术分享        <!-- 上传失败时跳转页面 -->
技术分享        <property name="formView" value="/user/err.jsp"/>
技术分享        <!-- 上传成功时跳转页面 -->
技术分享         <property name="successView" value="/user/confirmation.jsp"/>
技术分享   </bean>
技术分享</beans>

三.设定jsp页面

技术分享 <form id="form1" method="post" action="upload.do" enctype="multipart/form-data">                
技术分享    <tr>
技术分享        <td width="25%" align="right">上传文件:</td>
技术分享        <td><input id="file" type="file" NAME="file" style="width:300px;"></td>
技术分享    </tr>
技术分享    <tr align="center" valign="middle">
技术分享        <td height="60" colspan="2"><input type="submit" ID="BtnOK" value="确认上传"></td>
技术分享    </tr>
技术分享</form>    

          ok,现在就可以上传文件了,挺简单吧?这里我只列出了基本步骤,至于具体的操作(比如中文问题)可能就需要大家自己再完善完善了.

原文博客地址:http://blog.csdn.net/hbcui1984/article/details/1498112

以上是关于文件上传之 MultipartFile的主要内容,如果未能解决你的问题,请参考以下文章

MultipartFile文件上传问题

SpringMvc的MultipartFile上传文件小结

SpringMVC 文件上传配置,多文件上传,使用的MultipartFile(转)

springboot使用MultipartFile上传文件以及File与MultipartFile互转

springboot使用MultipartFile上传文件以及File与MultipartFile互转

springMVC实现 MultipartFile 多文件上传,StandardMultipartHttpServletRequest上传文件,在请求中上传文件,比如上传图片