web修煉-SpringMVC實(shí)現(xiàn)文件上傳下載等實(shí)例

添加上傳的Maven依賴

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

在mvc配置文件中添加上傳文件的Bean

 <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"><!--配置上傳文件-->
        <property name="defaultEncoding" value="utf-8"/><!--默認(rèn)字符編碼-->
        <property name="maxUploadSize" value="10485760000"/><!--上傳文件大小-->
        <property name="maxInMemorySize" value="4096"/><!--內(nèi)存中的緩存大小-->

    </bean>

創(chuàng)建單上傳的前端頁(yè)面

oneUpload.jsp

<%--
  Created by IntelliJ IDEA.
  User: elijahliu
  Date: 2017/2/24
  Time: 13:32
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>單文件上傳</title>
</head>
<body>
    <div style="margin: 100px auto 0;">
        <form action="/oneUpload" method="post" enctype="multipart/form-data"><%--定義enctype來(lái)用于文件上傳--%>
            <p>
                <span>文件</span>
                <input type="file" name="imageFile">
                <input type="submit">

            </p>

        </form>
    </div>

</body>
</html>

創(chuàng)建多上傳頁(yè)面
moreUpload.jsp

<%--
  Created by IntelliJ IDEA.
  User: elijahliu
  Date: 2017/2/24
  Time: 13:51
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>多文件上傳</title>
</head>
<body>
<div style="margin: 100px auto 0;">
    <form action="/moreUpload" method="post" enctype="multipart/form-data"><%--定義enctype來(lái)用于文件上傳--%>
        <p>
            <span>文件1</span>
            <input type="file" name="imageFile1">
        </p>
        <p>
            <span>文件2</span>
            <input type="file" name="imageFile2">
        </p>
        <p>
            <input type="submit">
        </p>



    </form>
</div>

</body>
</html>

編寫(xiě)Controller層的代碼

UploadController.java

package com.springmvc.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;

import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

/**
 * Created by elijahliu on 2017/2/24.
 */
@Controller
public class UploadController {
    @RequestMapping("/oneUpload")
    public String onUpload(@RequestParam("imageFile")MultipartFile imageFile, HttpServletRequest request) {//獲取文件參數(shù)
        String uploadUrl = request.getSession().getServletContext().getRealPath("/")+"upload/";//獲取路徑
        String filename = imageFile.getOriginalFilename();//獲取上傳文件的源文件名

        File dir = new File(uploadUrl);
        if (!dir.exists()) {
            dir.mkdirs();
        }

        System.out.println("文件上傳到" + uploadUrl + filename);
        File targetFile = new File(uploadUrl + filename);
        if (!targetFile.exists()) {
            try {
                targetFile.createNewFile();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

        try {
            imageFile.transferTo(targetFile); //這一句就是將上傳的文件轉(zhuǎn)化到剛才新建的文件中去了
        } catch (IOException e) {
            e.printStackTrace();
        }

        return "redirect:http://localhost:8080/upload/"+filename;
    }


    @RequestMapping("/moreUpload")
    public String moreUpload(HttpServletRequest request) {
        MultipartHttpServletRequest multipartHttpServletRequest = (MultipartHttpServletRequest) request;
        Map<String,MultipartFile> files = multipartHttpServletRequest.getFileMap();//獲取圖片的集合

        String uploadUrl = request.getSession().getServletContext().getRealPath("/") + "upload/";
        File dir = new File(uploadUrl);
        if (!dir.exists()) {
            dir.mkdirs();
        }
        List<String> fileList = new ArrayList<String>();

        for (MultipartFile file:files.values()) {//使用循環(huán)??map集合上傳文件
            File targetFile = new File(uploadUrl + file.getOriginalFilename());
            if (!targetFile.exists()) {
                try {
                    targetFile.createNewFile();
                } catch (IOException e) {
                    e.printStackTrace();
                }
                try {
                    file.transferTo(targetFile);
                    fileList.add("http://localhost:8080/upload/"+file.getOriginalFilename());//將文件路徑添加到文件列表中去
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }

        }
        request.setAttribute("files",fileList);
        return "moreUploadResult";


    }

}

編寫(xiě)多上傳的結(jié)果頁(yè)面

<%@ page import="java.util.List" %><%--
  Created by IntelliJ IDEA.
  User: elijahliu
  Date: 2017/2/24
  Time: 13:54
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>多文件上傳結(jié)果</title>
</head>
<body>
<div style="margin: 0 auto 100px">
    <%
        List<String> fileList = (List<String>) request.getAttribute("files");
        for (String url:fileList) {
    %>
    <a href="<%=url%>">
        <img alt="" src="<%=url%>"/>
    </a>
    <%
        }
    %>
</div>

</body>
</html>

創(chuàng)建下載Controller

package com.springmvc.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.*;

/**
 * Created by elijahliu on 2017/2/24.
 */
@Controller
public class DownloadController {

    @RequestMapping("/download")
    public String download(HttpServletRequest request, HttpServletResponse response){
        String fileName = "1.JPG";
        System.out.println(fileName);
        response.setContentType("text/html;charset=utf-8"); /*設(shè)定相應(yīng)類型 編碼*/
        try {
            request.setCharacterEncoding("UTF-8");//設(shè)定請(qǐng)求字符編碼
        } catch (UnsupportedEncodingException e1) {
            e1.printStackTrace();
        }
        java.io.BufferedInputStream bis = null;//創(chuàng)建輸入輸出流
        java.io.BufferedOutputStream bos = null;

        String ctxPath = request.getSession().getServletContext().getRealPath("/") + "upload/";//獲取文件真實(shí)路徑
        System.out.println(ctxPath);
        String downLoadPath = ctxPath + fileName;
        System.out.println(downLoadPath);
        try {
            long fileLength = new File(downLoadPath).length();//獲取文件長(zhǎng)度
            response.setContentType("application/x-msdownload;");//下面這三行是固定形式
            response.setHeader("Content-disposition", "attachment; filename=" + new String(fileName.getBytes("utf-8"), "ISO8859-1"));
            response.setHeader("Content-Length", String.valueOf(fileLength));
            bis = new BufferedInputStream(new FileInputStream(downLoadPath));//創(chuàng)建輸入輸出流實(shí)例
            bos = new BufferedOutputStream(response.getOutputStream());
            byte[] buff = new byte[2048];//創(chuàng)建字節(jié)緩沖大小
            int bytesRead;
            while (-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
                bos.write(buff, 0, bytesRead);
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if (bis != null)
                try {
                    bis.close();//關(guān)閉輸入流
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            if (bos != null)
                try {
                    bos.close();//關(guān)閉輸出流
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
        }
        return null;

    }

}

創(chuàng)建導(dǎo)航頁(yè)面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>導(dǎo)航</title>
</head>
<body>
<div style="margin: 0 auto 100px;">
    <a href="topage.html?pagename=oneUpload">單文件上傳</a>
    <a href="topage.html?pagename=moreUpload">多文件上傳</a>
    <a href="http://localhost:8080/download">文件下載</a>
    <a href="topage.html?pagename=login">驗(yàn)證碼</a>

</div>

</body>
</html>

GitHub地址:

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市学歧,隨后出現(xiàn)的幾起案子衩匣,更是在濱河造成了極大的恐慌阐虚,老刑警劉巖座享,帶你破解...
    沈念sama閱讀 212,816評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異旨袒,居然都是意外死亡瓣铣,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén)碗旅,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)渡处,“玉大人,你說(shuō)我怎么就攤上這事祟辟∫教保” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 158,300評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵旧困,是天一觀的道長(zhǎng)醇份。 經(jīng)常有香客問(wèn)我,道長(zhǎng)叮喳,這世上最難降的妖魔是什么被芳? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,780評(píng)論 1 285
  • 正文 為了忘掉前任,我火速辦了婚禮馍悟,結(jié)果婚禮上畔濒,老公的妹妹穿的比我還像新娘。我一直安慰自己锣咒,他們只是感情好侵状,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,890評(píng)論 6 385
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著毅整,像睡著了一般趣兄。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上悼嫉,一...
    開(kāi)封第一講書(shū)人閱讀 50,084評(píng)論 1 291
  • 那天艇潭,我揣著相機(jī)與錄音,去河邊找鬼。 笑死蹋凝,一個(gè)胖子當(dāng)著我的面吹牛鲁纠,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播鳍寂,決...
    沈念sama閱讀 39,151評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼改含,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了迄汛?” 一聲冷哼從身側(cè)響起捍壤,我...
    開(kāi)封第一講書(shū)人閱讀 37,912評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎鞍爱,沒(méi)想到半個(gè)月后鹃觉,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,355評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡睹逃,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,666評(píng)論 2 327
  • 正文 我和宋清朗相戀三年帜慢,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片唯卖。...
    茶點(diǎn)故事閱讀 38,809評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖躬柬,靈堂內(nèi)的尸體忽然破棺而出拜轨,到底是詐尸還是另有隱情,我是刑警寧澤允青,帶...
    沈念sama閱讀 34,504評(píng)論 4 334
  • 正文 年R本政府宣布橄碾,位于F島的核電站,受9級(jí)特大地震影響颠锉,放射性物質(zhì)發(fā)生泄漏法牲。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,150評(píng)論 3 317
  • 文/蒙蒙 一琼掠、第九天 我趴在偏房一處隱蔽的房頂上張望拒垃。 院中可真熱鬧,春花似錦瓷蛙、人聲如沸悼瓮。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)横堡。三九已至,卻和暖如春冠桃,著一層夾襖步出監(jiān)牢的瞬間命贴,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,121評(píng)論 1 267
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留胸蛛,地道東北人污茵。 一個(gè)月前我還...
    沈念sama閱讀 46,628評(píng)論 2 362
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像胚泌,于是被迫代替她去往敵國(guó)和親省咨。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,724評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容

  • Spring Boot 參考指南 介紹 轉(zhuǎn)載自:https://www.gitbook.com/book/qbgb...
    毛宇鵬閱讀 46,778評(píng)論 6 342
  • Spring Cloud為開(kāi)發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見(jiàn)模式的工具(例如配置管理玷室,服務(wù)發(fā)現(xiàn)零蓉,斷路器,智...
    卡卡羅2017閱讀 134,638評(píng)論 18 139
  • JAVA面試題 1穷缤、作用域public,private,protected,以及不寫(xiě)時(shí)的區(qū)別答:區(qū)別如下:作用域 ...
    JA尐白閱讀 1,146評(píng)論 1 0
  • 叔本華說(shuō)敌蜂,“人總以為他所看到的便是這個(gè)世界的極限”。 思考津肛,即對(duì)問(wèn)題或爭(zhēng)議的解決為目的的一種積極主動(dòng)的心理活動(dòng)章喉,其...
    M洋蔥閱讀 208評(píng)論 0 2