溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用MultipartResolver怎么實現(xiàn)一個文件上傳功能

發(fā)布時間:2021-05-14 17:40:52 來源:億速云 閱讀:142 作者:Leah 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)使用MultipartResolver怎么實現(xiàn)一個文件上傳功能,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

springMVC默認(rèn)的解析器里面是沒有加入對文件上傳的解析的,,使用springmvc對文件上傳的解析器來處理文件上傳的時需要用springmvc提供的MultipartResolver的申明,又因為CommonsMultipartResolver實現(xiàn)了MultipartResolver接口,所以我們可以在springmvc配置文件中這樣配置:

 <bean id="multipartResolver" 
    class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> 
    <property name="defaultEncoding" value="utf-8" /> 
    <property name="maxUploadSize" value="10485760000" /> 
    <property name="maxInMemorySize" value="40960" /> 
  </bean>

 首先引入文件上傳所需要的包,commons-logging-*.jar commons-io-*.jar  commons-fileupload-*.jar

新建一個JSP頁面.

<%@ page language="java" contentType="text/html; charset=UTF-8" 
  pageEncoding="UTF-8"%> 
<!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="user/fileUpload" method="post" enctype="multipart/form-data">--%> 
  <form action="user/fileUpload" method="post" enctype="multipart/form-data"> 
    <input type="file" name="fileUpload" /> 
    <input type="submit" value="上傳" /> 
  </form> 
</body> 
</html>

springmvc上傳文件的形式有很多,這里我介紹兩種.

第一種,看Controller

package gd.hz.springmvc.controller; 
 
import java.io.File; 
import java.io.IOException; 
 
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.commons.CommonsMultipartFile; 
import org.springframework.web.servlet.ModelAndView; 
 
@Controller("userController") 
@RequestMapping("user") 
public class UserController { 
 
  // 處理文件上傳一 
  @RequestMapping(value = "fileUpload", method = RequestMethod.POST) 
  public ModelAndView fileUpload( 
      @RequestParam("fileUpload") CommonsMultipartFile file) { 
    // 獲取文件類型 
    System.out.println(file.getContentType()); 
    // 獲取文件大小 
    System.out.println(file.getSize()); 
    // 獲取文件名稱 
    System.out.println(file.getOriginalFilename()); 
 
    // 判斷文件是否存在 
    if (!file.isEmpty()) { 
      String path = "D:/" + file.getOriginalFilename(); 
      File localFile = new File(path); 
      try { 
        file.transferTo(localFile); 
      } catch (IllegalStateException e) { 
        e.printStackTrace(); 
      } catch (IOException e) { 
        e.printStackTrace(); 
      } 
    } 
    return new ModelAndView("dataSuccess"); 
  } 
}

類CommonsMultipartFile為我們提供了許多對文件處理的方法.例如文件大小,上傳文件名稱,文件類型,具體用法可以查看spring的文檔.transferTo就是將文件輸出到指定地方. 

文件上傳的第二種方法,這種方法比較常用:

package gd.hz.springmvc.controller; 
 
import java.io.File; 
import java.io.IOException; 
import java.util.Iterator; 
 
import javax.servlet.http.HttpServletRequest; 
 
import org.springframework.stereotype.Controller; 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.bind.annotation.RequestMethod; 
import org.springframework.web.multipart.MultipartFile; 
import org.springframework.web.multipart.MultipartHttpServletRequest; 
import org.springframework.web.multipart.commons.CommonsMultipartResolver; 
 
@Controller("userController") 
@RequestMapping("user") 
public class UserController { 
 
  // 處理文件上傳二 
  @RequestMapping(value = "fileUpload2", method = RequestMethod.POST) 
  public String fileUpload2(HttpServletRequest request) 
      throws IllegalStateException, IOException { 
    // 設(shè)置上下方文 
    CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver( 
        request.getSession().getServletContext()); 
 
    // 檢查form是否有enctype="multipart/form-data" 
    if (multipartResolver.isMultipart(request)) { 
      MultipartHttpServletRequest multiRequest = (MultipartHttpServletRequest) request; 
 
      Iterator<String> iter = multiRequest.getFileNames(); 
      while (iter.hasNext()) { 
 
        // 由CommonsMultipartFile繼承而來,擁有上面的方法. 
        MultipartFile file = multiRequest.getFile(iter.next()); 
        if (file != null) { 
          String fileName = "demoUpload" + file.getOriginalFilename(); 
          String path = "D:/" + fileName; 
 
          File localFile = new File(path); 
          file.transferTo(localFile); 
        } 
 
      } 
    } 
    return "dataSuccess"; 
  } 
}

關(guān)于使用MultipartResolver怎么實現(xiàn)一個文件上傳功能就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI