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

溫馨提示×

溫馨提示×

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

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

SpringMVC如何實現文件上傳

發布時間:2020-12-02 13:43:03 來源:億速云 閱讀:274 作者:小新 欄目:web開發

小編給大家分享一下SpringMVC如何實現文件上傳,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

SpringMVC為文件上傳提供了直接的支持,這種支持是用即插即用的MultipartResolver實現的。SpringMVC使用Apache Commons FileUpload技術實現了一個MultipartResolver實現類:CommonsMultipartResolver。因此,SpringMVC的文件上傳還需要依賴Apache Commons FileUpload的組件。

1. 添加pom依賴

    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.3</version>
    </dependency>
    <dependency>
      <groupId>commons-fileupload</groupId>
      <artifactId>commons-fileupload</artifactId>
      <version>1.3.2</version>
    </dependency>

2. 配置文件上傳bean

在spring mvc配置文件中增加一個文件上傳bean。

    <!-- SpringMVC上傳文件時,需要配置MultipartResolver處理器 -->
    <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <property name="defaultEncoding" value="UTF-8" />
    </bean>

3.文件上傳

文件上傳是項目開發中最常見的功能。為了能上傳文件,必須將表單的method設置為POST,并將enctype設置為multipart/form-data。只有在這樣的情況下,瀏覽器才會把用戶選擇的文件以二進制數據發送給服務器

上傳文件界面:upload_form.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>文件上傳</title>
</head>
<body>

<!-- 上傳單個對象 注意表單的method屬性設為post,enctype屬性設為multipart/form-data -->
<form method="POST" action="/SpringMVCDemo1/upload" enctype="multipart/form-data">
    <input type="file" name="file" /><br/><br/>
    <input type="submit" value="上傳" />
</form>

<!-- 上傳多個對象 注意表單的method屬性設為post,enctype屬性設為multipart/form-data -->
<form method="POST" action="/SpringMVCDemo1/uploadMultiFiles" enctype="multipart/form-data">
    <p>文件1:<input type="file" name="file" /></p>
    <p>文件2:<input type="file" name="file" /></p>
    <p>文件3:<input type="file" name="file" /></p>
    <!-- 同時傳遞其他業務字段 -->
    <p>用戶名:<input type="text" name="userName" /></p>
    <p>密碼:<input type="password" name="password" /></p>
    <p><input type="submit" value="上傳" /></p>
</form>
</body>
</html>

上傳結果返回界面:upload_result.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
    <h3>上傳結果為:${message}</h3>
</body>
</html>

注意:要提前創建好存儲文件的文件夾,比如我的路徑為:"D:staticResourcesTestimgupload"。

FileController.java

@Controller
@RequestMapping("/SpringMVCDemo1")
public class FileController {
    /**
     * 跳轉到上傳頁面
     * @GetMapping 是一個組合注解,是@RequestMapping(method = RequestMethod.GET)的縮寫。
     */
    @GetMapping("/gotoUploadForm")
    public String index() {
        return "/upload_form.jsp";
    }

    /**
     * 上傳單個文件
     * 通過MultipartFile讀取文件信息,如果文件為空跳轉到結果頁并給出提示;
     * 如果不為空讀取文件流并寫入到指定目錄,最后將結果展示到頁面
     * @param multipartFile
     * @PostMapping 是一個組合注解,是@RequestMapping(method = RequestMethod.POST)的縮寫。
     */
    @PostMapping("/upload")
    public String uploadSingleFile(@RequestParam("file") MultipartFile multipartFile, HttpServletRequest request){
        if (multipartFile.isEmpty()){
            request.setAttribute("message",  "Please select a file to upload '");
            return "/upload_result.jsp";
        }

        try {
            String contentType = multipartFile.getContentType();
            String originalFilename = multipartFile.getOriginalFilename();
            byte[] bytes = multipartFile.getBytes();
            System.out.println("上傳文件名為-->" + originalFilename);
            System.out.println("上傳文件類型為-->" + contentType);
            System.out.println("上傳文件大小為-->"+bytes.length);

            //filePath為存儲路徑
            String filePath = "d:/staticResourcesTest";
            System.out.println("filePath-->" + filePath);
            //存儲在staticResourcesTest下的imgupload文件夾下
            File parentPath = new File(filePath, "imgupload");
            System.out.println("上傳目的地為-->"+parentPath.getAbsolutePath());
            try {
                File destFile = new File(parentPath,originalFilename);//上傳目的地
                FileUtils.writeByteArrayToFile(destFile,multipartFile.getBytes());
            } catch (Exception e) {
                e.printStackTrace();
            }
            request.setAttribute("message",  "You successfully uploaded '" + multipartFile.getOriginalFilename() + "'");

        } catch (IOException e) {
            e.printStackTrace();
        }
        return "/upload_result.jsp";
    }

    /**
     * 上傳多個文件,同時接受業務數據
     * @param origFiles
     * @param request
     * @param user
     * @return
     */
    @PostMapping("/uploadMultiFiles")
    public String uploadMultiFiles(@RequestParam("file") List<MultipartFile> origFiles, HttpServletRequest request, User user) {
        //User為實體類
        System.out.println("User=="+user);
        if (origFiles.isEmpty()) {
            request.setAttribute("message",  "Please select a file to upload '");
            return "/upload_result.jsp";
        }

        try {
            for (MultipartFile origFile : origFiles) {
                String contentType = origFile.getContentType();
                String fileName = origFile.getOriginalFilename();
                byte[] bytes = origFile.getBytes();
                System.out.println("上傳文件名為-->" + fileName);
                System.out.println("上傳文件類型為-->" + contentType);
                System.out.println("上傳文件大小為-->"+bytes.length);

                String filePath = "d:/staticResourcesTest";
                System.out.println("上傳目的地為-->"+filePath);
                try {
                    //上傳目的地(staticResourcesTest文件夾下)
                    File destFile = new File(filePath,fileName);
                    FileUtils.writeByteArrayToFile(destFile,origFile.getBytes());
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
            request.setAttribute("message",  "You successfully uploaded '");
        } catch (IOException e) {
            e.printStackTrace();
        }

        return "/upload_result.jsp";
    }
}

看完了這篇文章,相信你對SpringMVC如何實現文件上傳有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

乐亭县| 张家口市| 浮山县| 正定县| 克什克腾旗| 宜川县| 墨竹工卡县| 黔江区| 长海县| 万源市| 依兰县| 理塘县| 巩留县| 长沙县| 弥渡县| 布尔津县| 蚌埠市| 西华县| 辰溪县| 张家界市| 镇远县| 临澧县| 陆河县| 临海市| 洪泽县| 宁晋县| 永宁县| 江口县| 成武县| 阜城县| 都匀市| 永吉县| 淮阳县| 巴彦淖尔市| 开远市| 南通市| 西充县| 武安市| 七台河市| 潜江市| 山西省|