欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

SpringMVC 單文件,多文件上傳實(shí)現(xiàn)詳解

 更新時(shí)間:2019年09月23日 14:45:00   作者:SupermanH  
這篇文章主要介紹了SpringMVC 單文件,多文件上傳實(shí)現(xiàn)詳解,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

需要用到的流的相關(guān)知識(shí):http://www.dbjr.com.cn/article/170640.htm

SpringMVC中寫(xiě)好了文件上傳的類。

要使用文件上傳,首先需要文件上傳相關(guān)的Jar包。commons-fileupload.jar 和 commons-io.jar。

添加到pom.xml或lib文件夾下。

pom.xml:

<dependency>
      <groupId>commons-fileupload</groupId>
      <artifactId>commons-fileupload</artifactId>
      <version>1.3.1</version>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.4</version>
    </dependency>

在SprigMVC的配置文件中添加bean(id和class都是固定寫(xiě)法):

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

前端寫(xiě)一個(gè)單文件上傳的表單,一個(gè)多文件上傳的表單(多文件上傳的表單中,多個(gè)文件輸入input中的name相同):

<form action="handler/testUpload" method="post" enctype="multipart/form-data">
  文件描述: <input type="text" name="desc" id="desc">
  <br>
  請(qǐng)選擇文件: <input type="file" name="file"><br>
  <input type="submit" value="上傳文件">
</form>
<br>
<br>
<form action="handler/testMutiUpload" method="post" enctype="multipart/form-data">
  文件描述: <input type="text" name="desc">
  <br>
  請(qǐng)選擇文件: <input type="file" name="file"><br>
  請(qǐng)選擇文件1: <input type="file" name="file"><br>
  請(qǐng)選擇文件2: <input type="file" name="file"><br>
  <input type="submit" value="上傳文件">
</form>

文件上傳中,參數(shù)要使用MultipartFile而不是File類,不能使用FileUtils.copyFile()來(lái)復(fù)制文件,因此使用流來(lái)輸出到磁盤(pán)

單文件多文件只是將單文件中傳遞來(lái)的file參數(shù)改為數(shù)組形式,將方法內(nèi)的file有關(guān)的操作都變?yōu)閿?shù)組即可。

單文件上傳

也可以不使用流,下面這句看到有人使用,但是沒(méi)有測(cè)試。

File dest = new File(filePath + fileName); file.transferTo(dest);

@RequestMapping("testUpload")
  public String testUpload(@RequestParam("desc") String desc, @RequestParam("file") MultipartFile file) throws IOException {
    System.out.println("文件描述:" + desc);
    // 得到文件的輸入流
    InputStream inputStream = file.getInputStream();
    // 得到文件的完整名字 img.png/hh.docx
    String fileName = file.getOriginalFilename();
    // 輸出流
    OutputStream outputStream = new FileOutputStream("C:\\tmp\\" + fileName);
    // 緩沖區(qū)
    byte[] bs = new byte[1024];
    int len = -1;
    while ((len = inputStream.read(bs)) != -1) {
      outputStream.write(bs,0,len);
    }
    inputStream.close();
    outputStream.close();
    return "success";
  }

多文件上傳

@RequestMapping("testMutiUpload")
  public String testMutiUpload(@RequestParam("desc") String desc, @RequestParam("file") MultipartFile[] files) throws IOException {
    System.out.println("文件描述:" + desc);
    for (MultipartFile file :
        files) {
      InputStream inputStream = file.getInputStream();
      String fileName = file.getOriginalFilename();
      OutputStream outputStream = new FileOutputStream("C:\\tmp\\" + fileName);
      byte[] bs = new byte[1024];
      int len = -1;
      while ((len = inputStream.read(bs)) != -1) {
        outputStream.write(bs,0,len);
      }
      inputStream.close();
      outputStream.close();
    }
    return "success";
  }

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論