SpringMVC檔案上傳

2021-10-10 07:56:46 字數 3502 閱讀 4535

檔案上傳的必要前提

b method 屬性取值必須是 post

c 提供乙個檔案選擇域

匯入檔案上傳的jar包

>

>

commons-fileuploadgroupid

>

>

commons-fileuploadartifactid

>

>

1.3.1version

>

dependency

>

>

>

commons-iogroupid

>

>

commons-ioartifactid

>

>

2.4version

>

dependency

>

編寫檔案上傳的jsp頁面

action

="/user/fileupload1"

method

="post"

enctype

="multipart/form-data"

>

上傳檔案:type

="file"

name

="upload"

/>

>

type

="submit"

value

="上傳"

/>

form

>

編寫檔案上傳的controller控制器 (

//解析request物件 獲取上傳的檔案項

diskfileitemfactory factory =

newdiskfileitemfactory()

; servletfileupload upload =

newservletfileupload

(factory)

;//解析request

list

items = upload.

parserequest

(request)

;//遍歷

for(fileitem item : items)

else

}return

"success";}

springmvc框架提供了multipartfile物件,該物件表示上傳的檔案,要求變數名稱必須和表單file標籤的name屬性名稱相同。

編寫檔案上傳的controller控制器

/**

* springmvc檔案上傳

//上傳檔案項

//獲取到上傳檔案的名稱

string filename = upload.

getoriginalfilename()

;//檔名唯一值

string uuid = uuid.

randomuuid()

.tostring()

.replace

("-",""

);filename=filename+uuid+"";

//完成上傳

upload.

transferto

(new

file

(path,filename));

return

"success"

;}

配置檔案解析器

"multipartresolver"

class

="org.springframework.web.multipart.commons.commonsmultipartresolver"

>

name

="maxuploadsize"

>

>

5242880value

>

property

>

bean

>

搭建伺服器

根據文件配置tomcat9的伺服器,現在是2個伺服器

匯入資料中day02_springmvc5_02image專案,作為伺服器使用

實現springmvc跨伺服器方式檔案上傳

匯入開發需要的jar包

>

>

com.sun.jerseygroupid

>

>

jersey-coreartifactid

>

>

1.18.1version

>

dependency

>

>

>

com.sun.jerseygroupid

>

>

jersey-clientartifactid

>

>

1.18.1version

>

dependency

>

編寫檔案上傳的jsp頁面

action

="/user/fileupload3"

method

="post"

enctype

="multipart/form-data"

>

上傳檔案:type

="file"

name

="upload"

/>

>

type

="submit"

value

="上傳"

/>

form

>

編寫控制器

/**

* 跨伺服器上傳

* @param upload

* @return

* @throws exception

*/("/fileupload3"

)public string fileupload3

(multipartfile upload)

throws exception

springmvc檔案上傳

上 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 param fname 檔名稱 含字尾 throws ioexception down...

spring mvc 檔案上傳

在檔案上傳時,我們需要用到檔案上傳解析器,其實,它並不陌生,只是對httpservletrequest的乙個擴充套件,使其能夠更好的處理檔案上傳,擴充套件的介面名為 org.springframework.web.multipart.multiparthttpservletrequest 先用乙個類...

Springmvc 上傳檔案

springmvc為檔案上傳提供了直接支援,通過multipartresolver實現。預設沒有裝配multipartresolver,需要先在上下文中配置multipartresolver。1 需要的jar包 commons iogroupid commons ioartifactid 2.4ve...