本文實(shí)例為大家分享了Spring MVC多文件上傳的具體代碼,供大家參考,具體內(nèi)容如下
創(chuàng)新互聯(lián)服務(wù)緊隨時(shí)代發(fā)展步伐,進(jìn)行技術(shù)革新和技術(shù)進(jìn)步,經(jīng)過十多年的發(fā)展和積累,已經(jīng)匯集了一批資深網(wǎng)站策劃師、設(shè)計(jì)師、專業(yè)的網(wǎng)站實(shí)施團(tuán)隊(duì)以及高素質(zhì)售后服務(wù)人員,并且完全形成了一套成熟的業(yè)務(wù)流程,能夠完全依照客戶要求對(duì)網(wǎng)站進(jìn)行成都網(wǎng)站建設(shè)、做網(wǎng)站、建設(shè)、維護(hù)、更新和改版,實(shí)現(xiàn)客戶網(wǎng)站對(duì)外宣傳展示的首要目的,并為客戶企業(yè)品牌互聯(lián)網(wǎng)化提供全面的解決方案。
1)創(chuàng)建工程并導(dǎo)入JAR包
2)創(chuàng)建多文件選擇頁面
在 WebContent 目錄下創(chuàng)建 JSP 頁面 multiFiles.jsp,在該頁面中使用表單上傳多個(gè)文件,具體代碼如下:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>Insert title here
3)創(chuàng)建POJO類
package pers.zhang.pojo; import java.util.List; import org.springframework.web.multipart.MultipartFile; public class MultiFileDomain { private Listdescription; private List myfile; public List getDescription() { return description; } public void setDescription(List description) { this.description = description; } public List getMyfile() { return myfile; } public void setMyfile(List myfile) { this.myfile = myfile; } }
4)創(chuàng)建多文件上傳處理方法
/** * 多文件上傳 */ @RequestMapping("/multifile") public String multiFileUpload(@ModelAttribute MultiFileDomain multiFileDomain,HttpServletRequest request) { String realpath = request.getServletContext().getRealPath("uploadfiles"); File targetDir = new File(realpath); if (!targetDir.exists()) { targetDir.mkdirs(); } Listfiles = multiFileDomain.getMyFile(); for (int i = 0; i < files.size(); i++) { MultipartFile file = files.get(i); String fileName = file.getOriginalFilename(); File targetFile = new File(realpath, fileName); // 上傳 try { file.transferTo(targetFile); } catch (Exception e) { e.printStackTrace(); } } logger.info("成功"); return "showMulti"; }
5)創(chuàng)建成功顯示頁面
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>Insert title here
詳情 | 文件名 |
${description} | ${multiFileDomain.myfile[loop.count-1].originalFilename} |
6)測(cè)試文件上傳
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。