zoukankan      html  css  js  c++  java
  • SpringMvc 关于 EXCEL

    概述
    我在使用SpingMvc 的EXCEL的发现传统的

    • AbstractJExcelView jexcel api已经过时
    • AbstractView poi Api
      通过阅读官方文档发现建议我们使用
    • AbstractXlsView
    • AbstractXlsxView
    • AbstractXlsxStreamingView
    
    Deprecated.  as of Spring 4.2, in favor of AbstractXlsView and its AbstractXlsxView and AbstractXlsxStreamingView variants
    
    Convenient superclass for Excel document views. Compatible with Apache POI 3.5 and higher, as of Spring 4.0. 
    
    Properties: 
    •url (optional): The url of an existing Excel document to pick as a starting point. It is done without localization part nor the ".xls" extension. 
    • 这里我们写一个例子:
    package myview;
    
    import java.util.Map;
    
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    
    import org.apache.poi.ss.usermodel.Cell;
    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.Component;
    import org.springframework.web.servlet.view.document.AbstractXlsView;
    
    @Component
    public class MyExcelView extends AbstractXlsView {
        /**
         * AbstractJExcelView  jexcel api已经过时
         * AbstractView  poi Api
         * 简单定义的显示excel数据内容
         */
        @Override
        protected void buildExcelDocument(Map<String, Object> model, Workbook workbook, HttpServletRequest request,
                HttpServletResponse response) throws Exception {
            response.setHeader("content-disposition", "attachment;filename=我的工作簿.xls");
            Sheet sheet = workbook.createSheet("我的工作簿");
            Row row = sheet.createRow(0);
            Cell cell = row.createCell(0);
            Cell cell2 = row.createCell(1);
            cell.setCellValue("1");
            cell2.setCellValue("2");
        }
    }
    
  • 相关阅读:
    WPF and SL RadioButtonList Tip
    Prism V2之旅(1)
    wpf开发常见问题(1)
    (转)英语学习者的十句经典名言
    json格式化,统一格式?,前端与后端的矛盾
    路由器默认地址跟帐号密码
    ASP操作XML数据小结
    系统封装工具和常用软件下载(2009年10月更新的)
    全国邮编、区号数据、IP数据库
    Linux 包管理速查表
  • 原文地址:https://www.cnblogs.com/dgwblog/p/7635186.html
Copyright © 2011-2022 走看看