91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

SpringMVC中怎樣實現文件上傳功能

發布時間:2021-08-07 14:12:12 來源:億速云 閱讀:87 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關SpringMVC中怎樣實現文件上傳功能,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

一、創建文件上傳FileController類

package com.byzore.controller;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.multipart.MultipartFile;import javax.servlet.http.HttpSession;import java.io.File;import java.io.IOException;@Controller@RequestMapping("/file")public class FileController {  @RequestMapping("/fileUpload")  /**   * MultipartFile 選擇文件   */  public String fileupload(HttpSession session, MultipartFile file,String author)throws IOException{    System.out.println("作者:"+author);    System.out.println(file);    /**     * 如何處理文件     */    if (!file.isEmpty()){      //獲取文件名稱      String fileName=file.getOriginalFilename();      //獲取到需要上傳的路徑      String realPath = session.getServletContext().getRealPath("/WEB-INF/upload");      //創建文件對象      File uploadfile=new File(realPath+"\\"+fileName);      //如何上傳文件      file.transferTo(uploadfile);    }    return "index";  }  @RequestMapping("/fileUploads")  /**   * 多文件上傳   */  public String fileuploads(HttpSession session, MultipartFile[] uploadFiles,String author)throws IOException{    System.out.println("作者:"+author);    System.out.println(uploadFiles);    for (MultipartFile file: uploadFiles) {      /**       * 如何處理文件       */      if (!file.isEmpty()){        //獲取文件名稱        String fileName=file.getOriginalFilename();        //獲取到需要上傳的路徑        String realPath = session.getServletContext().getRealPath("/WEB-INF/upload");        //創建文件對象        File uploadfile=new File(realPath+"\\"+fileName);        //如何上傳文件        file.transferTo(uploadfile);      }    }    return "index";  }}

二、編輯applicationContext.xml文件

<?xml version="1.0" encoding="UTF-8"?>  <beans xmlns="http://www.springframework.org/schema/beans"      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"      xmlns:context="http://www.springframework.org/schema/context"      xmlns:mvc="http://www.springframework.org/schema/mvc"      xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">    <!--將Controller注入到容器當中  id就是瀏覽器請求地址-->    <!--<bean id="/firstController" class="com.springmvc.controller.FirstController"></bean>-->    <!--配置包掃描器-->    <context:component-scan base-package="com.byzore"/>    <!--Spring支持SpringMVC-->    <mvc:annotation-driven/>  <!--配置視圖解析器-->  <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">    <property name="prefix" value="/"/>    <property name="suffix" value=".jsp"/>  </bean>  <!--利用DefaultServlet放行資源-->  <mvc:default-servlet-handler/>  <!--從Spring3.0.4版本提供資源放行的方式-->  <!--<mvc:resources mapping="/**" location="/img"/>--><!--文件上傳解析器-->  <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">    <!--編碼-->    <property name="defaultEncoding" value="UTF-8"/>    <property name="maxUploadSize" value="5000000000"/>  </bean></beans>

三、創建fileUpload.jsp頁面

<%@ page contentType="text/html;charset=UTF-8" language="java" %><html><head>  <title>文件上傳</title></head><body>  <form action="/file/fileUpload" method="post" enctype="multipart/form-data">    <input type="file" name="fileUpload"/>作者:<input type="text" name="author"/>    <input type="submit" value="提交"/>  </form></body></html>

看完上述內容,你們對SpringMVC中怎樣實現文件上傳功能有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

神木县| 鄄城县| 临洮县| 榕江县| 博罗县| 伽师县| 当涂县| 万盛区| 罗田县| 黄石市| 承德县| 台江县| 蓝山县| 鄂托克前旗| 天台县| 皋兰县| 吴堡县| 奈曼旗| 宁远县| 太白县| 广灵县| 葵青区| 锦州市| 汾阳市| 石门县| 陵水| 西青区| 杂多县| 东乌珠穆沁旗| 扬中市| 固安县| 武威市| 临邑县| 老河口市| 福贡县| 饶河县| 平邑县| 济南市| 蓝山县| 连云港市| 鄂尔多斯市|