• public ActionResult excelPrint() {
    HSSFWorkbook workbook = new HSSFWorkbook();// 创建一个Excel文件
    HSSFSheet sheet = workbook.createSheet();// 创建一个Excel的Sheet
    sheet.createFreezePane(, );// 冻结
    // 设置列宽
    sheet.setColumnWidth(, );
    sheet.setColumnWidth(, );
    sheet.setColumnWidth(, );
    sheet.setColumnWidth(, );
    sheet.setColumnWidth(, );
    sheet.setColumnWidth(, );
    sheet.setColumnWidth(, );
    sheet.setColumnWidth(, );
    // Sheet样式
    HSSFCellStyle sheetStyle = workbook.createCellStyle();
    // 背景色的设定
    sheetStyle.setFillBackgroundColor(HSSFColor.GREY_25_PERCENT.index);
    // 前景色的设定
    sheetStyle.setFillForegroundColor(HSSFColor.GREY_25_PERCENT.index);
    // 填充模式
    sheetStyle.setFillPattern(HSSFCellStyle.FINE_DOTS);
    // 设置列的样式
    for (int i = ; i <= ; i++) {
    sheet.setDefaultColumnStyle((short) i, sheetStyle);
    }
    // 设置字体
    HSSFFont headfont = workbook.createFont();
    headfont.setFontName("黑体");
    headfont.setFontHeightInPoints((short) );// 字体大小
    headfont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);// 加粗
    // 另一个样式
    HSSFCellStyle headstyle = workbook.createCellStyle();
    headstyle.setFont(headfont);
    headstyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 左右居中
    headstyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 上下居中
    headstyle.setLocked(true);
    headstyle.setWrapText(true);// 自动换行
    // 另一个字体样式
    HSSFFont columnHeadFont = workbook.createFont();
    columnHeadFont.setFontName("宋体");
    columnHeadFont.setFontHeightInPoints((short) );
    columnHeadFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
    // 列头的样式
    HSSFCellStyle columnHeadStyle = workbook.createCellStyle();
    columnHeadStyle.setFont(columnHeadFont);
    columnHeadStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 左右居中
    columnHeadStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 上下居中
    columnHeadStyle.setLocked(true);
    columnHeadStyle.setWrapText(true);
    columnHeadStyle.setLeftBorderColor(HSSFColor.BLACK.index);// 左边框的颜色
    columnHeadStyle.setBorderLeft((short) );// 边框的大小
    columnHeadStyle.setRightBorderColor(HSSFColor.BLACK.index);// 右边框的颜色
    columnHeadStyle.setBorderRight((short) );// 边框的大小
    columnHeadStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); // 设置单元格的边框为粗体
    columnHeadStyle.setBottomBorderColor(HSSFColor.BLACK.index); // 设置单元格的边框颜色
    // 设置单元格的背景颜色(单元格的样式会覆盖列或行的样式)
    columnHeadStyle.setFillForegroundColor(HSSFColor.WHITE.index); HSSFFont font = workbook.createFont();
    font.setFontName("宋体");
    font.setFontHeightInPoints((short) );
    // 普通单元格样式
    HSSFCellStyle style = workbook.createCellStyle();
    style.setFont(font);
    style.setAlignment(HSSFCellStyle.ALIGN_LEFT);// 左右居中
    style.setVerticalAlignment(HSSFCellStyle.VERTICAL_TOP);// 上下居中
    style.setWrapText(true);
    style.setLeftBorderColor(HSSFColor.BLACK.index);
    style.setBorderLeft((short) );
    style.setRightBorderColor(HSSFColor.BLACK.index);
    style.setBorderRight((short) );
    style.setBorderBottom(HSSFCellStyle.BORDER_THIN); // 设置单元格的边框为粗体
    style.setBottomBorderColor(HSSFColor.BLACK.index); // 设置单元格的边框颜色.
    style.setFillForegroundColor(HSSFColor.WHITE.index);// 设置单元格的背景颜色.
    // 另一个样式
    HSSFCellStyle centerstyle = workbook.createCellStyle();
    centerstyle.setFont(font);
    centerstyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 左右居中
    centerstyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 上下居中
    centerstyle.setWrapText(true);
    centerstyle.setLeftBorderColor(HSSFColor.BLACK.index);
    centerstyle.setBorderLeft((short) );
    centerstyle.setRightBorderColor(HSSFColor.BLACK.index);
    centerstyle.setBorderRight((short) );
    centerstyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); // 设置单元格的边框为粗体
    centerstyle.setBottomBorderColor(HSSFColor.BLACK.index); // 设置单元格的边框颜色.
    centerstyle.setFillForegroundColor(HSSFColor.WHITE.index);// 设置单元格的背景颜色. try {
    // 创建第一行
    HSSFRow row0 = sheet.createRow();
    // 设置行高
    row0.setHeight((short) );
    // 创建第一列
    HSSFCell cell0 = row0.createCell();
    cell0.setCellValue(new HSSFRichTextString("中非发展基金投资项目调度会工作落实情况对照表"));
    cell0.setCellStyle(headstyle);
    /**
    * 合并单元格
    * 第一个参数:第一个单元格的行数(从0开始)
    * 第二个参数:第二个单元格的行数(从0开始)
    * 第三个参数:第一个单元格的列数(从0开始)
    * 第四个参数:第二个单元格的列数(从0开始)
    */
    CellRangeAddress range = new CellRangeAddress(, , , );
    sheet.addMergedRegion(range);
    // 创建第二行
    HSSFRow row1 = sheet.createRow();
    HSSFCell cell1 = row1.createCell();
    cell1.setCellValue(new HSSFRichTextString("本次会议时间:2009年8月31日 前次会议时间:2009年8月24日"));
    cell1.setCellStyle(centerstyle);
    // 合并单元格
    range = new CellRangeAddress(, , , );
    sheet.addMergedRegion(range);
    // 第三行
    HSSFRow row2 = sheet.createRow();
    row2.setHeight((short) );
    HSSFCell cell = row2.createCell();
    cell.setCellValue(new HSSFRichTextString("责任者"));
    cell.setCellStyle(columnHeadStyle);
    cell = row2.createCell();
    cell.setCellValue(new HSSFRichTextString("成熟度排序"));
    cell.setCellStyle(columnHeadStyle);
    cell = row2.createCell();
    cell.setCellValue(new HSSFRichTextString("事项"));
    cell.setCellStyle(columnHeadStyle);
    cell = row2.createCell();
    cell.setCellValue(new HSSFRichTextString("前次会议要求\n/新项目的项目概要"));
    cell.setCellStyle(columnHeadStyle);
    cell = row2.createCell();
    cell.setCellValue(new HSSFRichTextString("上周工作进展"));
    cell.setCellStyle(columnHeadStyle);
    cell = row2.createCell();
    cell.setCellValue(new HSSFRichTextString("本周工作计划"));
    cell.setCellStyle(columnHeadStyle);
    cell = row2.createCell();
    cell.setCellValue(new HSSFRichTextString("问题和建议"));
    cell.setCellStyle(columnHeadStyle);
    cell = row2.createCell();
    cell.setCellValue(new HSSFRichTextString("备 注"));
    cell.setCellStyle(columnHeadStyle);
    // 访问数据库,得到数据集
    List<DeitelVO> deitelVOList = getEntityManager().queryDeitelVOList();
    int m = ;
    int k = ;
    for (int i = ; i < deitelVOList.size(); i++) {
    DeitelVO vo = deitelVOList.get(i);
    String dname = vo.getDname();
    List<Workinfo> workList = vo.getWorkInfoList();
    HSSFRow row = sheet.createRow(m);
    cell = row.createCell();
    cell.setCellValue(new HSSFRichTextString(dname));
    cell.setCellStyle(centerstyle);
    // 合并单元格
    range = new CellRangeAddress(m, m + workList.size() - , , );
    sheet.addMergedRegion(range);
    m = m + workList.size(); for (int j = ; j < workList.size(); j++) {
    Workinfo w = workList.get(j);
    // 遍历数据集创建Excel的行
    row = sheet.getRow(k + j);
    if (null == row) {
    row = sheet.createRow(k + j);
    }
    cell = row.createCell();
    cell.setCellValue(w.getWnumber());
    cell.setCellStyle(centerstyle);
    cell = row.createCell();
    cell.setCellValue(new HSSFRichTextString(w.getWitem()));
    cell.setCellStyle(style);
    cell = row.createCell();
    cell.setCellValue(new HSSFRichTextString(w.getWmeting()));
    cell.setCellStyle(style);
    cell = row.createCell();
    cell.setCellValue(new HSSFRichTextString(w.getWbweek()));
    cell.setCellStyle(style);
    cell = row.createCell();
    cell.setCellValue(new HSSFRichTextString(w.getWtweek()));
    cell.setCellStyle(style);
    cell = row.createCell();
    cell.setCellValue(new HSSFRichTextString(w.getWproblem()));
    cell.setCellStyle(style);
    cell = row.createCell();
    cell.setCellValue(new HSSFRichTextString(w.getWremark()));
    cell.setCellStyle(style);
    }
    k = k + workList.size();
    }
    // 列尾
    int footRownumber = sheet.getLastRowNum();
    HSSFRow footRow = sheet.createRow(footRownumber + );
    HSSFCell footRowcell = footRow.createCell();
    footRowcell.setCellValue(new HSSFRichTextString(" 审 定:XXX 审 核:XXX 汇 总:XX"));
    footRowcell.setCellStyle(centerstyle);
    range = new CellRangeAddress(footRownumber + , footRownumber + , , );
    sheet.addMergedRegion(range); HttpServletResponse response = getResponse();
    HttpServletRequest request = getRequest();
    String filename = "未命名.xls";//设置下载时客户端Excel的名称
    // 请见:http://zmx.iteye.com/blog/622529
    filename = Util.encodeFilename(filename, request);
    response.setContentType("application/vnd.ms-excel");
    response.setHeader("Content-disposition", "attachment;filename=" + filename);
    OutputStream ouputStream = response.getOutputStream();
    workbook.write(ouputStream);
    ouputStream.flush();
    ouputStream.close(); } catch (Exception e) {
    e.printStackTrace();
    }
    return null;
    }

hssworkbook 用法案例的更多相关文章

  1. Java Me-List控件的用法案例

    /** * Java Me-List控件的用法案例 */package com.xushouwei.cn; import java.io.IOException;import javax.microe ...

  2. Scala进阶之路-Scala中的枚举用法案例展示

    Scala进阶之路-Scala中的枚举用法案例展示 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. Scala中的枚举值和Java中的枚举值有点差别,不过使用起来也都差大同小异,我这 ...

  3. Hadoop基础-MapReduce的Partitioner用法案例

    Hadoop基础-MapReduce的Partitioner用法案例 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.Partitioner关键代码剖析 1>.返回的分区号 ...

  4. Hadoop基础-MapReduce的Combiner用法案例

    Hadoop基础-MapReduce的Combiner用法案例 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.编写年度最高气温统计 如上图说所示:有一个temp的文件,里面存放 ...

  5. jQuery中的ajax用法案例

    什么是 AJAX? AJAX = 异步 JavaScript 和 XML(Asynchronous JavaScript and XML). 简短地说,在不重载整个网页的情况下,AJAX 通过后台加载 ...

  6. gawk(awk)的用法案例

    gawk(awk)的用法案例 本文首先简单介绍一个gawk和awk的区别,然后是一点基本使用流程,最后是自己做的一个分析数据文件的脚本代码,供大家参考.另外想了解基本流程的入门知识的可以下载附件pdf ...

  7. Java8 新特性学习 Lambda表达式 和 Stream 用法案例

    Java8 新特性学习 Lambda表达式 和 Stream 用法案例 学习参考文章: https://www.cnblogs.com/coprince/p/8692972.html 1.使用lamb ...

  8. MVC4 jquery 样式 主题 用法(案例)

    MVC4已经自带了jquery,新建的项目,基本上什么都不用添加就可以运行,跑项目.(集成了那么多东西,jquery,modernizr,自带的默认权限,生成的模板,但是缺没有一个统一的文档或者什么去 ...

  9. atomic 原子自增工程用法案例

    案例 1 : 简单用法 atomic_int id; atomic_fetch_add(&id, 1) atomic_uint id; atomic_fetch_add(&id, 1) ...

随机推荐

  1. java实现ftp文件上传下载,解决慢,中文乱码,多个文件下载等问题

    //文件上传 public static boolean uploadToFTP(String url,int port,String username,String password,String ...

  2. SpringBoot微服务

    在企业级软件的架构模型上,我们主要讨论下SOA与微服务架构. SOA的全称是Service-Oriented Architecture,可译为“面向服务的架构”,它是一个组件模型,将应用程序的不同功能 ...

  3. Photon3Unity3D.dll 解析一

    IPhotonPeerListener  Photon客户端回调接口 1: //只要有来自Photon Server的事件就触发 2: public virtual void OnEvent( Eve ...

  4. Linux下的各类文件

    .a文件是静态链接库文件.所谓静态链接是指把要调用的函数或者过程链接到可执行文件中,成为可执行文件的一部分.当多个程序都调用相同函数时,内存中就会存在这个函数的多个拷贝,这样就浪费了宝贵的内存资源.. ...

  5. 洛谷 P2241统计方形(数据加强版) 题解

    题目传送门 说是加强版,其实可以把棋盘那道题的代码粘过来(注意要开long long): #include<bits/stdc++.h> using namespace std; ,c; ...

  6. 分子量(UVa1586)

    题目具体描述见:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=830&a ...

  7. ASP.NET Zero--1.如何开始

    1.加群 群号:104390185,下载这个文件并解压 用VS2015打开aspnet-zero-1.9.0.1 2.修改配置文件 Web项目web.config连接字符串 <add name= ...

  8. QT构造函数中*parent

    程序写的多了,你会发现几乎所有的Qt类的构造函数都会有一个parent参数.这个参数通常是QObject* 或者是 QWidget* 类型的(定义新的类是通常首先初始化为0,在类的实现函数中赋值).很 ...

  9. 给你一个 5L 和 3L 桶,水无限多,怎么到出 4L。

    智力题 给你一个 5L 和 3L 桶,水无限多,怎么到出 4L. 思考过程 先将 3L 的桶装满水,倒入 5L 的桶里. 再重新将 3L 的桶装满水,倒入 5L 的桶里,把 5 L 的桶装满后,这样 ...

  10. EOJ 3265 七巧板

    模拟. 先判断三边形和四边形的个数. 然后判断$5$个三角形是否都是等腰直角三角形. 然后判断$5$个等腰直角三角形比例是否符合要求. 然后寻找正方形.判断比例是否符合要求. 最后判断四边形是否符合要 ...