溫馨提示×

溫馨提示×

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

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

使用Spring MVC怎么實(shí)現(xiàn)文件上傳和下載

發(fā)布時(shí)間:2021-04-12 15:17:32 來源:億速云 閱讀:212 作者:Leah 欄目:開發(fā)技術(shù)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)使用Spring MVC怎么實(shí)現(xiàn)文件上傳和下載,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

文件上傳

使用Spring MVC怎么實(shí)現(xiàn)文件上傳和下載

1、導(dǎo)入主要依賴

<!--文件上傳-->
<dependency>
 <groupId>commons-fileupload</groupId>
 <artifactId>commons-fileupload</artifactId>
 <version>1.3.3</version>
</dependency>
<!--servlet-api導(dǎo)入高版本的-->
<dependency>
 <groupId>javax.servlet</groupId>
 <artifactId>javax.servlet-api</artifactId>
 <version>4.0.1</version>
</dependency>

2、配置bean:multipartResolver(注:此bena的id必須為:multipartResolver , 否則上傳文件會(huì)報(bào)400的錯(cuò)誤?。?/p>

<!--文件上傳配置-->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
 <!-- 請求的編碼格式,必須和jSP的pageEncoding屬性一致,以便正確讀取表單的內(nèi)容,
 默認(rèn)為ISO-8859-1 -->
 <property name="defaultEncoding" value="utf-8"/>
 <!-- 上傳文件大小上限,單位為字節(jié)(10485760=10M) -->
 <property name="maxUploadSize" value="10485760"/>
 <property name="maxInMemorySize" value="40960"/>
</bean>

3、index.jsp

使用Spring MVC怎么實(shí)現(xiàn)文件上傳和下載

4、Controller

@RestController
public class FileController {
    //@RequestParam("file") 將name=file控件得到的文件封裝成 CommonsMultipartFile 對象

    //批量上傳 CommonsMultipartFile 則為數(shù)組即可
    @RequestMapping("/upload")
    public String fileUpload(@RequestParam("file") CommonsMultipartFile file, HttpServletRequest request) throws IOException {
        //獲取文件名 : file.getOriginalFilename();
        String uploadFileName = file.getOriginalFilename();
        //如果文件名為空,直接回到首頁!
        if ("".equals(uploadFileName)) {
            return "redirect:/index.jsp";
        }
        System.out.println("上傳文件名 : " + uploadFileName);
        //上傳路徑保存設(shè)置
        String path = request.getServletContext().getRealPath("/upload");
        //如果路徑不存在,創(chuàng)建一個(gè)
        File realPath = new File(path);
        if (!realPath.exists()) {
            realPath.mkdir();
        }
        System.out.println("上傳文件保存地址:" + realPath);
        InputStream is = file.getInputStream(); //文件輸入流
        OutputStream os = new FileOutputStream(new File(realPath, uploadFileName)); //文件輸出流
        //讀取寫出
        int len = 0;
        byte[] buffer = new byte[1024];
        while ((len = is.read(buffer)) != -1) {
            os.write(buffer, 0, len);
            os.flush();
        }
        os.close();
        is.close();
        return "redirect:/index.jsp";
    }

    /*
     * 采用file.Transto 來保存上傳的文件
     */
    @RequestMapping("/upload2")
    public String fileUpload2(@RequestParam("file") CommonsMultipartFile file, HttpServletRequest request) throws IOException {
        //上傳路徑保存設(shè)置
        String path = request.getServletContext().getRealPath("/upload");
        File realPath = new File(path);
        if (!realPath.exists()) {
            realPath.mkdir();
        }
        System.out.println("上傳文件保存地址:" + realPath);
        //通過CommonsMultipartFile的方法直接寫文件(注意這個(gè)時(shí)候)
        file.transferTo(new File(realPath + "/" + file.getOriginalFilename()));
        return "redirect:/index.jsp";
    }
}

使用Spring MVC怎么實(shí)現(xiàn)文件上傳和下載

使用Spring MVC怎么實(shí)現(xiàn)文件上傳和下載

文件下載

index.jsp

使用Spring MVC怎么實(shí)現(xiàn)文件上傳和下載

Controller

@RequestMapping(value = "/download")
public String downloads(HttpServletResponse response, HttpServletRequest request) throws Exception {
    //要下載的圖片地址
    String path = request.getServletContext().getRealPath("/upload");
    String fileName = "基礎(chǔ)語法.jpg";

    //1、設(shè)置response 響應(yīng)頭
    response.reset(); //設(shè)置頁面不緩存,清空buffer
    response.setCharacterEncoding("UTF-8"); //字符編碼
    response.setContentType("multipart/form-data"); //二進(jìn)制傳輸數(shù)據(jù)
    //設(shè)置響應(yīng)頭
    response.setHeader("Content-Disposition", "attachment;fileName=" + URLEncoder.encode(fileName, "UTF-8"));
    File file = new File(path, fileName);
    //2、 讀取文件--輸入流
    InputStream input = new FileInputStream(file);
    //3、 寫出文件--輸出流
    OutputStream out = response.getOutputStream();
    byte[] buff = new byte[1024];
    int index = 0;
    //4、執(zhí)行 寫出操作
    while ((index = input.read(buff)) != -1) {
        out.write(buff, 0, index);
        out.flush();
    }
    out.close();
    input.close();
    return null;
}

使用Spring MVC怎么實(shí)現(xiàn)文件上傳和下載

上述就是小編為大家分享的使用Spring MVC怎么實(shí)現(xiàn)文件上傳和下載了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

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

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

AI