HSSFWorkBooK用法 —Excel表的导出和设置

2013年02月21日 ⁄ 综合 ⁄ 共 9248字 ⁄ 字号    ⁄ 评论关闭
  1. public ActionResult excelPrint() {
  2. HSSFWorkbook workbook = new HSSFWorkbook();// 创建一个Excel文件
  3. HSSFSheet sheet = workbook.createSheet();// 创建一个Excel的Sheet
  4. sheet.createFreezePane(1, 3);// 冻结
  5. // 设置列宽
  6. sheet.setColumnWidth(0, 1000);
  7. sheet.setColumnWidth(1, 3500);
  8. sheet.setColumnWidth(2, 3500);
  9. sheet.setColumnWidth(3, 6500);
  10. sheet.setColumnWidth(4, 6500);
  11. sheet.setColumnWidth(5, 6500);
  12. sheet.setColumnWidth(6, 6500);
  13. sheet.setColumnWidth(7, 2500);
  14. // Sheet样式
  15. HSSFCellStyle sheetStyle = workbook.createCellStyle();
  16. // 背景色的设定
  17. sheetStyle.setFillBackgroundColor(HSSFColor.GREY_25_PERCENT.index);
  18. // 前景色的设定
  19. sheetStyle.setFillForegroundColor(HSSFColor.GREY_25_PERCENT.index);
  20. // 填充模式
  21. sheetStyle.setFillPattern(HSSFCellStyle.FINE_DOTS);
  22. // 设置列的样式
  23. for (int i = 0; i <= 14; i++) {
  24. sheet.setDefaultColumnStyle((short) i, sheetStyle);
  25. }
  26. // 设置字体
  27. HSSFFont headfont = workbook.createFont();
  28. headfont.setFontName("黑体");
  29. headfont.setFontHeightInPoints((short) 22);// 字体大小
  30. headfont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);// 加粗
  31. // 另一个样式
  32. HSSFCellStyle headstyle = workbook.createCellStyle();
  33. headstyle.setFont(headfont);
  34. headstyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 左右居中
  35. headstyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 上下居中
  36. headstyle.setLocked(true);
  37. headstyle.setWrapText(true);// 自动换行
  38. // 另一个字体样式
  39. HSSFFont columnHeadFont = workbook.createFont();
  40. columnHeadFont.setFontName("宋体");
  41. columnHeadFont.setFontHeightInPoints((short) 10);
  42. columnHeadFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
  43. // 列头的样式
  44. HSSFCellStyle columnHeadStyle = workbook.createCellStyle();
  45. columnHeadStyle.setFont(columnHeadFont);
  46. columnHeadStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 左右居中
  47. columnHeadStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 上下居中
  48. columnHeadStyle.setLocked(true);
  49. columnHeadStyle.setWrapText(true);
  50. columnHeadStyle.setLeftBorderColor(HSSFColor.BLACK.index);// 左边框的颜色
  51. columnHeadStyle.setBorderLeft((short) 1);// 边框的大小
  52. columnHeadStyle.setRightBorderColor(HSSFColor.BLACK.index);// 右边框的颜色
  53. columnHeadStyle.setBorderRight((short) 1);// 边框的大小
  54. columnHeadStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); // 设置单元格的边框为粗体
  55. columnHeadStyle.setBottomBorderColor(HSSFColor.BLACK.index); // 设置单元格的边框颜色
  56. // 设置单元格的背景颜色(单元格的样式会覆盖列或行的样式)
  57. columnHeadStyle.setFillForegroundColor(HSSFColor.WHITE.index);
  58. HSSFFont font = workbook.createFont();
  59. font.setFontName("宋体");
  60. font.setFontHeightInPoints((short) 10);
  61. // 普通单元格样式
  62. HSSFCellStyle style = workbook.createCellStyle();
  63. style.setFont(font);
  64. style.setAlignment(HSSFCellStyle.ALIGN_LEFT);// 左右居中
  65. style.setVerticalAlignment(HSSFCellStyle.VERTICAL_TOP);// 上下居中
  66. style.setWrapText(true);
  67. style.setLeftBorderColor(HSSFColor.BLACK.index);
  68. style.setBorderLeft((short) 1);
  69. style.setRightBorderColor(HSSFColor.BLACK.index);
  70. style.setBorderRight((short) 1);
  71. style.setBorderBottom(HSSFCellStyle.BORDER_THIN); // 设置单元格的边框为粗体
  72. style.setBottomBorderColor(HSSFColor.BLACK.index); // 设置单元格的边框颜色.
  73. style.setFillForegroundColor(HSSFColor.WHITE.index);// 设置单元格的背景颜色.
  74. // 另一个样式
  75. HSSFCellStyle centerstyle = workbook.createCellStyle();
  76. centerstyle.setFont(font);
  77. centerstyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 左右居中
  78. centerstyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 上下居中
  79. centerstyle.setWrapText(true);
  80. centerstyle.setLeftBorderColor(HSSFColor.BLACK.index);
  81. centerstyle.setBorderLeft((short) 1);
  82. centerstyle.setRightBorderColor(HSSFColor.BLACK.index);
  83. centerstyle.setBorderRight((short) 1);
  84. centerstyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); // 设置单元格的边框为粗体
  85. centerstyle.setBottomBorderColor(HSSFColor.BLACK.index); // 设置单元格的边框颜色.
  86. centerstyle.setFillForegroundColor(HSSFColor.WHITE.index);// 设置单元格的背景颜色.
  87. try {
  88. // 创建第一行
  89. HSSFRow row0 = sheet.createRow(0);
  90. // 设置行高
  91. row0.setHeight((short) 900);
  92. // 创建第一列
  93. HSSFCell cell0 = row0.createCell(0);
  94. cell0.setCellValue(new HSSFRichTextString("中非发展基金投资项目调度会工作落实情况对照表"));
  95. cell0.setCellStyle(headstyle);
  96. /**
  97. * 合并单元格
  98. *    第一个参数:第一个单元格的行数(从0开始)
  99. *    第二个参数:第二个单元格的行数(从0开始)
  100. *    第三个参数:第一个单元格的列数(从0开始)
  101. *    第四个参数:第二个单元格的列数(从0开始)
  102. */
  103. CellRangeAddress range = new CellRangeAddress(0, 0, 0, 7);
  104. sheet.addMergedRegion(range);
  105. // 创建第二行
  106. HSSFRow row1 = sheet.createRow(1);
  107. HSSFCell cell1 = row1.createCell(0);
  108. cell1.setCellValue(new HSSFRichTextString("本次会议时间:2009年8月31日       前次会议时间:2009年8月24日"));
  109. cell1.setCellStyle(centerstyle);
  110. // 合并单元格
  111. range = new CellRangeAddress(1, 2, 0, 7);
  112. sheet.addMergedRegion(range);
  113. // 第三行
  114. HSSFRow row2 = sheet.createRow(3);
  115. row2.setHeight((short) 750);
  116. HSSFCell cell = row2.createCell(0);
  117. cell.setCellValue(new HSSFRichTextString("责任者"));
  118. cell.setCellStyle(columnHeadStyle);
  119. cell = row2.createCell(1);
  120. cell.setCellValue(new HSSFRichTextString("成熟度排序"));
  121. cell.setCellStyle(columnHeadStyle);
  122. cell = row2.createCell(2);
  123. cell.setCellValue(new HSSFRichTextString("事项"));
  124. cell.setCellStyle(columnHeadStyle);
  125. cell = row2.createCell(3);
  126. cell.setCellValue(new HSSFRichTextString("前次会议要求/n/新项目的项目概要"));
  127. cell.setCellStyle(columnHeadStyle);
  128. cell = row2.createCell(4);
  129. cell.setCellValue(new HSSFRichTextString("上周工作进展"));
  130. cell.setCellStyle(columnHeadStyle);
  131. cell = row2.createCell(5);
  132. cell.setCellValue(new HSSFRichTextString("本周工作计划"));
  133. cell.setCellStyle(columnHeadStyle);
  134. cell = row2.createCell(6);
  135. cell.setCellValue(new HSSFRichTextString("问题和建议"));
  136. cell.setCellStyle(columnHeadStyle);
  137. cell = row2.createCell(7);
  138. cell.setCellValue(new HSSFRichTextString("备 注"));
  139. cell.setCellStyle(columnHeadStyle);
  140. // 访问数据库,得到数据集
  141. List<DeitelVO> deitelVOList = getEntityManager().queryDeitelVOList();
  142. int m = 4;
  143. int k = 4;
  144. for (int i = 0; i < deitelVOList.size(); i++) {
  145. DeitelVO vo = deitelVOList.get(i);
  146. String dname = vo.getDname();
  147. List<Workinfo> workList = vo.getWorkInfoList();
  148. HSSFRow row = sheet.createRow(m);
  149. cell = row.createCell(0);
  150. cell.setCellValue(new HSSFRichTextString(dname));
  151. cell.setCellStyle(centerstyle);
  152. // 合并单元格
  153. range = new CellRangeAddress(m, m + workList.size() - 1, 0, 0);
  154. sheet.addMergedRegion(range);
  155. m = m + workList.size();
  156. for (int j = 0; j < workList.size(); j++) {
  157. Workinfo w = workList.get(j);
  158. // 遍历数据集创建Excel的行
  159. row = sheet.getRow(k + j);
  160. if (null == row) {
  161. row = sheet.createRow(k + j);
  162. }
  163. cell = row.createCell(1);
  164. cell.setCellValue(w.getWnumber());
  165. cell.setCellStyle(centerstyle);
  166. cell = row.createCell(2);
  167. cell.setCellValue(new HSSFRichTextString(w.getWitem()));
  168. cell.setCellStyle(style);
  169. cell = row.createCell(3);
  170. cell.setCellValue(new HSSFRichTextString(w.getWmeting()));
  171. cell.setCellStyle(style);
  172. cell = row.createCell(4);
  173. cell.setCellValue(new HSSFRichTextString(w.getWbweek()));
  174. cell.setCellStyle(style);
  175. cell = row.createCell(5);
  176. cell.setCellValue(new HSSFRichTextString(w.getWtweek()));
  177. cell.setCellStyle(style);
  178. cell = row.createCell(6);
  179. cell.setCellValue(new HSSFRichTextString(w.getWproblem()));
  180. cell.setCellStyle(style);
  181. cell = row.createCell(7);
  182. cell.setCellValue(new HSSFRichTextString(w.getWremark()));
  183. cell.setCellStyle(style);
  184. }
  185. k = k + workList.size();
  186. }
  187. // 列尾
  188. int footRownumber = sheet.getLastRowNum();
  189. HSSFRow footRow = sheet.createRow(footRownumber + 1);
  190. HSSFCell footRowcell = footRow.createCell(0);
  191. footRowcell.setCellValue(new HSSFRichTextString("                    审  定:XXX      审  核:XXX     汇  总:XX"));
  192. footRowcell.setCellStyle(centerstyle);
  193. range = new CellRangeAddress(footRownumber + 1, footRownumber + 1, 0, 7);
  194. sheet.addMergedRegion(range);
  195. HttpServletResponse response = getResponse();
  196. HttpServletRequest request = getRequest();
  197. String filename = "未命名.xls";//设置下载时客户端Excel的名称
  198. // 请见:http://zmx.javaeye.com/blog/622529
  199. filename = Util.encodeFilename(filename, request);
  200. response.setContentType("application/vnd.ms-excel");
  201. response.setHeader("Content-disposition", "attachment;filename=" + filename);
  202. OutputStream ouputStream = response.getOutputStream();
  203. workbook.write(ouputStream);
  204. ouputStream.flush();
  205. ouputStream.close();
  206. catch (Exception e) {
  207. e.printStackTrace();
  208. }
  209. return null;
  210. }

HSSFWorkBooK用法 —Excel表的导出和设置的更多相关文章

  1. HSSFWorkBooK用法 ---Excel表的导出和设置

    public ActionResult excelPrint() { HSSFWorkbook workbook = new HSSFWorkbook();// 创建一个Excel文件 HSSFShe ...

  2. JAVA实现创建Excel表并导出(转发)

    <span style="font-family:Verdana, Arial, Helvetica, sans-serif;line-height:25.2px;background ...

  3. 如果从excel表中导出insert-sql

    =CONCATENATE("INSERT INTO p_act_lottery(actId,status,grantWay,createTime,invalidTime,amount,pri ...

  4. 【ITOO 1】将List数据导出Excel表

    需求描述:在课表导入的时候,首先给用户提供模板(excel),然后将用户填写好的数据读取到list集合中.再进行判空处赋值处理,以及去重处理.这篇博客,主要介绍读取excel表和导出excel表的方法 ...

  5. SSM中使用POI实现excel的导入导出

    环境:导入POI对应的包 环境: Spring+SpringMVC+Mybatis POI对应的包 <dependency> <groupId>org.apache.poi&l ...

  6. ASP.NET导出excel表方法汇总

    asp.net里导出excel表方法汇总  1.由dataset生成 public void CreateExcel(DataSet ds,string typeid,string FileName) ...

  7. asp.net使用MVC4框架基于NPOI做导出数据到Excel表

    NPOI 是 POI 项目的 .NET 版本.POI是一个开源的Java读写Excel.WORD等微软OLE2组件文档的项目. 使用 NPOI 你就可以在没有安装 Office 或者相应环境的机器上对 ...

  8. java中的数据导出到Excel表中

    整个项目中导出数据到.Excel的源码 import java.io.BufferedOutputStream; import java.io.FileInputStream; import java ...

  9. JAVA笔记-如何将百万级数据高效的导出到Excel表单

    今天,一朋友问我使用JAVA有没有什么办法导出百万级的数据到Excel工作表. 当时我的第一个念头就是这真的是一个好疯狂的念头.然后就想假如真的有这样类似的需求,我自己应该怎么做呢? ps: 首先科普 ...

随机推荐

  1. 【第六章】 springboot + 事务

    在实际开发中,其实很少会用到事务,一般情况下事务用的比较多的是在金钱计算方面. mybatis与spring集成后,其事务该怎么做?其实很简单,直接在上一节代码的基础上在相应的方法(通常是servic ...

  2. 2018 Machine Learning

    2018/8/13 线性模型(西瓜书P53~P73) Optimizer https://blog.csdn.net/u012151283/article/details/78154917 2018/ ...

  3. 伪类:after的使用以及结合attr来添加属性的技巧

    本案例以实现侧边栏的效果为例来说明 直接上代码看效果: css <style type="text/css"> *{;;list-style: none;} ul{;t ...

  4. 到底二级域名和一级域名哪个更利于SEO

    到底二级域名和一级域名哪个更利于SEO呢?本文是从百度官方转载详细的介绍:二级域名和一级域名的区别,请各位认真阅读. 二级域名和子域名的区别可以通过以下3点来解读: 一,二级域名的特点 搜索引擎往往将 ...

  5. 【TCP/IP详解 卷一:协议】第四章 ARP:地址解析协议 以及其他部分的一些知识

    4.1 引言 数据链路 如以太网(Ethernet) 或者 令牌环网 都有自己的寻址机制(一般为 48 bit 的地址). 一个网络(数据链路层) 可以同时被多个不同的网络使用.比如,一组使用TCP/ ...

  6. 使用u盘重装双系统中的乌班图

    之前的乌班图被我玩坏了,故而想重装一个.由于之前的双系统是同学帮我装的,我便到网上找各种资料,鼓弄了一天,终于完事了.把过程记录一下. window10 64bit ubuntu 14.04 desk ...

  7. UVa 12186 工人的请愿书(树形DP)

    https://vjudge.net/problem/UVA-12186 题意: 一个老板和n个员工组成树状结构,每个员工都有自己的唯一上司,老板的编号为0,员工1~n,工人们打算签署一个志愿书给老板 ...

  8. UVa 11054 Gergovia的酒交易

    https://vjudge.net/problem/UVA-11054 题意:直线上有n个等距的村庄,每个村庄要么买酒,要么卖酒.设第i个村庄对酒的需求为ai,ai>0表示买酒,ai<0 ...

  9. Yandex.Algorithm 2011 Round 2 D. Powerful array 莫队

    题目链接:点击传送 D. Powerful array time limit per test 5 seconds memory limit per test 256 megabytes input ...

  10. package 'orocos-bfl' not found CMake Error at /usr/share/cmake-2.8/Modules/FindPkgConfig.cmake:283 (message):

    #没有数字 sudo apt-get install ros-indigo-bfl