国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > Java > 正文

SpringMVC下實(shí)現(xiàn)Excel文件上傳下載

2024-07-14 08:40:08
字體:
供稿:網(wǎng)友

在實(shí)際應(yīng)用中,經(jīng)常會遇到上傳Excel或者下載Excel的情況,比如導(dǎo)入數(shù)據(jù)、下載統(tǒng)計(jì)數(shù)據(jù)等等場景。針對這個問題,我寫了個基于SpringMVC的簡單上傳下載示例,其中Excel的處理使用Apache的POI組件。

主要依賴的包如下:

<dependency>    <groupId>commons-io</groupId>    <artifactId>commons-io</artifactId>    <version>2.4</version>   </dependency>   <dependency>    <groupId>commons-fileupload</groupId>    <artifactId>commons-fileupload</artifactId>    <version>1.3.1</version>   </dependency>   <dependency>    <groupId>org.springframework</groupId>    <artifactId>spring-web</artifactId>    <version>4.0.0.RELEASE</version>   </dependency>   <dependency>    <groupId>org.springframework</groupId>    <artifactId>spring-webmvc</artifactId>    <version>4.0.0.RELEASE</version>   </dependency>   <dependency>    <groupId>org.apache.poi</groupId>    <artifactId>poi</artifactId>    <version>3.10.1</version>   </dependency> 

相關(guān)處理類:

(一)Controller類

package com.research.spring.controller;  import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map;  import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.ss.usermodel.Workbook; 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.servlet.ModelAndView;  import com.research.spring.model.UserInfo; import com.research.spring.view.ExcelView;  @Controller @RequestMapping("/file") public class FileController {   /**   * Excel文件上傳處理   * @param file   * @return   */  @RequestMapping("/upload")  public ModelAndView uploadExcel(@RequestParam("file") MultipartFile file){   List<UserInfo> list = new ArrayList<UserInfo>();     //這里只處理文件名包括“用戶”的文件,模板使用下載模板   if( file.getOriginalFilename().contains("用戶") ){    try {     Workbook wb = new HSSFWorkbook(file.getInputStream());     Sheet sheet = wb.getSheetAt(0);     for( int i = 1; i <= sheet.getLastRowNum(); i++ ){      Row row = sheet.getRow(i);      UserInfo info = new UserInfo();      info.setUserName(row.getCell(0).getStringCellValue());      info.setPassword(row.getCell(1).getStringCellValue());      list.add(info);     }    } catch (IOException e) {     e.printStackTrace();    }   }   ModelAndView mav = new ModelAndView("content");   mav.addObject("content",list.toString());   return mav;  }    /**   * Excel文件下載處理   */  @RequestMapping("/download")  public ModelAndView downloanExcel(){   List<UserInfo> list = new ArrayList<UserInfo>();   UserInfo userInfo = new UserInfo();   userInfo.setPassword("0000");   userInfo.setUserName("sdfas");   list.add(userInfo);   list.add(userInfo);   list.add(userInfo);   list.add(userInfo);   Map<String,List<UserInfo>> map = new HashMap<String, List<UserInfo>>();   map.put("infoList", list);   ExcelView ve = new ExcelView();   return new ModelAndView(ve,map);  }  } 

(二)實(shí)體類

package com.research.spring.model;  public class UserInfo {   private String userName;    private String password;   public String getUserName() {   return userName;  }   public void setUserName(String userName) {   this.userName = userName;  }   public String getPassword() {   return password;  }   public void setPassword(String password) {   this.password = password;  }   @Override  public String toString() {   return "UserInfo [userName=" + userName + ", password=" + password     + "]";  }  } 

(三)View類

這個類在下載時(shí)用到,在Spring渲染頁面時(shí)使用自定義的View類進(jìn)行Excel的相關(guān)處理。

package com.research.spring.view;  import java.io.OutputStream; import java.net.URLEncoder; import java.util.List; import java.util.Map;  import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse;  import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.springframework.web.servlet.view.document.AbstractExcelView;  import com.research.spring.model.UserInfo;  /**  * 下載Excel視圖  *  * @author wdmcygah  *  */ public class ExcelView extends AbstractExcelView {   @Override  protected void buildExcelDocument(Map<String, Object> model,    HSSFWorkbook workbook, HttpServletRequest request,    HttpServletResponse response) throws Exception {   @SuppressWarnings("unchecked")   List<UserInfo> list = (List<UserInfo>) model.get("infoList");   if (list != null && list.size() != 0) {    int len = list.size();    Sheet sheet = workbook.createSheet();    // 第一行文字說明    Row row = sheet.createRow(0);    Cell cell = row.createCell(0, Cell.CELL_TYPE_STRING);    cell.setCellValue("用戶名");    cell = row.createCell(1, Cell.CELL_TYPE_STRING);    cell.setCellValue("密碼");     //下面是具體內(nèi)容    for (int i = 0; i < len; i++) {     row = sheet.createRow(i + 1);     cell = row.createCell(0, Cell.CELL_TYPE_STRING);     cell.setCellValue(list.get(i).getUserName());     cell = row.createCell(1, Cell.CELL_TYPE_STRING);     cell.setCellValue(list.get(i).getPassword());    }   }    response.setContentType("application/vnd.ms-excel");   response.setCharacterEncoding("utf-8");   //這里對文件名進(jìn)行編碼,保證下載時(shí)漢字顯示正常   String fileName = URLEncoder.encode("用戶.xls", "utf-8");   //Content-disposition屬性設(shè)置成以附件方式進(jìn)行下載   response.setHeader("Content-disposition", "attachment;filename="     + fileName);   OutputStream os = response.getOutputStream();   workbook.write(os);   os.flush();   os.close();  } } 

(四)主要配置文件

上傳文件時(shí)需要在配置文件中配置MultipartResolver類,配置后Spring會自動將文件傳成MultipartFile對象,然后就可以進(jìn)行相應(yīng)的處理。示例看Controller類。

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans"  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"  xmlns:context="http://www.springframework.org/schema/context"  xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:util="http://www.springframework.org/schema/util"  xsi:schemaLocation="http://www.springframework.org/schema/beans  http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context-3.0.xsd  http://www.springframework.org/schema/mvc  http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd  http://www.springframework.org/schema/util  http://www.springframework.org/schema/util/spring-util-3.0.xsd">   <context:component-scan base-package="com.research" />   <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">   <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />   <property name="prefix" value="/WEB-INF/" />   <property name="suffix" value=".jsp" />  </bean>   <!-- 上傳文件解析器配置 -->  <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">   <property name="defaultEncoding" value="UTF-8"></property>   <!-- 上傳文件的大小限制 ,單位是字節(jié)-->   <property name="maxUploadSize" value="5242880000000"></property>   <!-- 上傳文件的臨時(shí)路徑,上傳完成后會自動刪除 -->   <property name="uploadTempDir" value="upload/temp"></property>  </bean> </beans> 

(五)測試頁面

<html> <head>   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <h3>測試下載Excel功能</h3> <form action="file/download.htm" enctype="multipart/form-data" method="post">  <input type="submit" value="下載Excel"></input>  </form>  <h3>測試上傳Excel功能</h3> <form action="file/upload.htm" enctype="multipart/form-data" method="post">  <input type="file" name="file"></input>  <input type="submit" value="上傳Excel"></input>  </form> </body> </html> 

 如果想看完整源碼,可以到我的Github倉庫查看。 其中,上傳文件只處理符合下載模板的文件。若要處理其它文件需要自實(shí)現(xiàn)。代碼測試通過無誤。

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持VeVb武林網(wǎng)。


注:相關(guān)教程知識閱讀請移步到JAVA教程頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 布尔津县| 长葛市| 林口县| 陵川县| 砚山县| 长汀县| 温宿县| 巴马| 丰镇市| 仪陇县| 英超| 博客| 阜新| 成安县| 永康市| 三原县| 洱源县| 凭祥市| 巫山县| 巴彦县| 彩票| 阿拉善盟| 准格尔旗| 杭锦后旗| 宜兰市| 刚察县| 分宜县| 南京市| 忻城县| 太原市| 云龙县| 平江县| 广德县| 兴化市| 峨眉山市| 香格里拉县| 库尔勒市| 新沂市| 惠东县| 西乌珠穆沁旗| 运城市|