這篇文章給大家分享的是有關(guān)spring mvc如何實(shí)現(xiàn)文件上傳與下載功能的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)公司專注于企業(yè)營銷型網(wǎng)站建設(shè)、網(wǎng)站重做改版、辛集網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、成都h5網(wǎng)站建設(shè)、購物商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為辛集等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。文件上傳
在pom.xml中引入spring mvc以及commons-fileupload的相關(guān)jar
org.springframework spring-webmvc 4.3.13.RELEASE commons-fileupload commons-fileupload 1.3.3
在springmvc.xml中加入文件上傳的相關(guān)配置
10485760 UTF-8
在jsp文件中加入form表單
添加文件上傳的方法
//上傳文件會自動綁定到MultipartFile中 @RequestMapping(value="/upload",method=RequestMethod.POST) public String upload(HttpServletRequest request, @RequestParam("description") String description, @RequestParam("file") MultipartFile file) throws Exception { //如果文件不為空,寫入上傳路徑 if(!file.isEmpty()) { //上傳文件路徑 String path = request.getServletContext().getRealPath("/file/"); //上傳文件名 String filename = file.getOriginalFilename(); File filepath = new File(path,filename); //判斷路徑是否存在,如果不存在就創(chuàng)建一個 if (!filepath.getParentFile().exists()) { filepath.getParentFile().mkdirs(); } //將上傳文件保存到一個目標(biāo)文件當(dāng)中 file.transferTo(new File(path + File.separator + filename)); return "success"; } else { return "error"; } }
感謝各位的閱讀!關(guān)于“spring mvc如何實(shí)現(xiàn)文件上傳與下載功能”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!