POI需要的JAR包

需要两个JAR包:poi-3.9.jar、poi-ooxml-3.9.jar。

附上两个JAR包的下载链接:poi-3.9.jarpoi-ooxml-3.9.jar

这里也推荐一个JAR包的下载地址:Maven Repository,在里面可以下载到基本全部的JAR包。

 

前端JSP页面设置

应为本文主要讲的是POI方式导出到Excel,所以就只采用最简单的Servlet的方式,不用Spring这些框架了。

 
  1. <body>

  2.     This is my JSP page. <br/>

  3.  
  4.     <a href="<c:url value="/DownLoadServlet" />">本地下载</a>

  5.  
  6. </body>

点击超链接之后,就会跳转到DownLoadServlet的goGet(...)方法上。

 

通用实体类

本来导出Excel是没有实体类的,但为了能够使程序更通用化(就像是发送邮件的Mail一样),本文也提供一个实体类来进行导出Excel的操作。

具体实体类CommonExcel的定义如下:

 
  1. import javax.servlet.http.HttpServletResponse;

  2.  
  3. import org.apache.poi.hssf.usermodel.HSSFCell;

  4. import org.apache.poi.hssf.usermodel.HSSFCellStyle;

  5. import org.apache.poi.hssf.usermodel.HSSFFont;

  6. import org.apache.poi.hssf.usermodel.HSSFRichTextString;

  7. import org.apache.poi.hssf.usermodel.HSSFRow;

  8. import org.apache.poi.hssf.usermodel.HSSFSheet;

  9. import org.apache.poi.hssf.usermodel.HSSFWorkbook;

  10. import org.apache.poi.hssf.util.HSSFColor;

  11. import org.apache.poi.ss.util.CellRangeAddress;

  12.  
  13. import java.io.FileOutputStream;

  14. import java.io.IOException;

  15. import java.io.OutputStream;

  16. import java.util.ArrayList;

  17. import java.util.List;

  18.  
  19. public class CommonExcel {

  20.  
  21. // 显示的导出Excel表的标题(通常第一行)

  22. private String title;

  23. // 导出Excel表的列名(通常第二行)

  24. private String[] rowName;

  25. // 导出Excel表的文件名

  26. private String fileName;

  27.  
  28. // 导出Excel表的文件主题内容(通常从第三行往下的内容)

  29. // 需要注意的是:主要内容的格式为第一列为数字(序号),从第二列开始都是字符串

  30. // 每一行为Object[]类型,很多行用List包装起来

  31. private List<Object[]> dataList = new ArrayList<Object[]>();

  32.  
  33. // 用于下载的response

  34. private HttpServletResponse response;

  35.  
  36. // 构造方法,传入要导出的数据

  37. public CommonExcel(String title, String[] rowName, List<Object[]> dataList, HttpServletResponse response, String fileName) {

  38. this.dataList = dataList;

  39. this.rowName = rowName;

  40. this.title = title;

  41. this.response = response;

  42. this.fileName = fileName;

  43. }

  44.  
  45. // 下载Excel的方法

  46. public void downloadExcel() throws Exception {

  47. try {

  48. HSSFWorkbook workbook = new HSSFWorkbook(); // 创建工作簿对象

  49. HSSFSheet sheet = workbook.createSheet(title); // 创建工作表

  50.  
  51. // 产生表格标题行

  52. HSSFRow rowm = sheet.createRow(0);

  53. HSSFCell cellTiltle = rowm.createCell(0);

  54.  
  55. // sheet样式定义(两个函数均为自定义,可以自行修改)

  56. HSSFCellStyle columnTopStyle = this.getColumnTopStyle(workbook);//获取列头样式对象

  57. HSSFCellStyle style = this.getStyle(workbook); //单元格样式对象

  58.  
  59. sheet.addMergedRegion(new CellRangeAddress(0, 1, 0, (rowName.length - 1)));

  60. cellTiltle.setCellStyle(columnTopStyle);

  61. cellTiltle.setCellValue(title);

  62.  
  63. // 定义所需列数

  64. int columnNum = rowName.length;

  65. HSSFRow rowRowName = sheet.createRow(2); // 在索引2的位置创建行(最顶端的行开始的第二行)

  66.  
  67. // 将列头设置到sheet的单元格中

  68. for (int n = 0; n < columnNum; n++) {

  69. HSSFCell cellRowName = rowRowName.createCell(n); //创建列头对应个数的单元格

  70. cellRowName.setCellType(HSSFCell.CELL_TYPE_STRING); //设置列头单元格的数据类型

  71. HSSFRichTextString text = new HSSFRichTextString(rowName[n]);

  72. cellRowName.setCellValue(text); //设置列头单元格的值

  73. cellRowName.setCellStyle(columnTopStyle); //设置列头单元格样式

  74. }

  75.  
  76. // 将查询出的数据设置到sheet对应的单元格中

  77. for (int i = 0; i < dataList.size(); i++) {

  78.  
  79. Object[] obj = dataList.get(i); //遍历每个对象

  80. HSSFRow row = sheet.createRow(i + 3); //创建所需的行数

  81.  
  82. for (int j = 0; j < obj.length; j++) {

  83. HSSFCell cell = null; //设置单元格的数据类型

  84. if (j == 0) {

  85. cell = row.createCell(j, HSSFCell.CELL_TYPE_NUMERIC); //第一列为数字

  86. cell.setCellValue(i + 1);

  87. } else {

  88. cell = row.createCell(j, HSSFCell.CELL_TYPE_STRING); //第二列起为字符串

  89. if (!"".equals(obj[j]) && obj[j] != null) {

  90. cell.setCellValue(obj[j].toString()); //设置单元格的值

  91. }

  92. }

  93. cell.setCellStyle(style); //设置单元格样式

  94. }

  95. }

  96. //让列宽随着导出的列长自动适应

  97. for (int colNum = 0; colNum < columnNum; colNum++) {

  98. int columnWidth = sheet.getColumnWidth(colNum) / 256;

  99. for (int rowNum = 0; rowNum < sheet.getLastRowNum(); rowNum++) {

  100. HSSFRow currentRow;

  101. //当前行未被使用过

  102. if (sheet.getRow(rowNum) == null) {

  103. currentRow = sheet.createRow(rowNum);

  104. } else {

  105. currentRow = sheet.getRow(rowNum);

  106. }

  107. if (currentRow.getCell(colNum) != null) {

  108. HSSFCell currentCell = currentRow.getCell(colNum);

  109. if (currentCell.getCellType() == HSSFCell.CELL_TYPE_STRING) {

  110. int length = currentCell.getStringCellValue().getBytes().length;

  111. if (columnWidth < length) {

  112. columnWidth = length;

  113. }

  114. }

  115. }

  116. }

  117. if (colNum == 0) {

  118. sheet.setColumnWidth(colNum, (columnWidth - 2) * 256);

  119. } else {

  120. sheet.setColumnWidth(colNum, (columnWidth + 4) * 256);

  121. }

  122. }

  123.  
  124. if (workbook != null) {

  125. try {

  126. if (response != null) {

  127. response.setContentType("application/vnd.ms-excel;charset=utf-8");

  128. response.setHeader("Content-Disposition", "attachment;filename=\""+new String(fileName.getBytes("gb2312"),"ISO8859-1"));

  129. OutputStream out = response.getOutputStream();

  130. workbook.write(out);

  131. out.close();

  132. } else {

  133. FileOutputStream outputStream = new FileOutputStream("C:/"+fileName);

  134. workbook.write(outputStream);

  135. outputStream.close();

  136. }

  137. } catch (IOException e) {

  138. e.printStackTrace();

  139. }

  140. }

  141.  
  142. } catch (Exception e) {

  143. e.printStackTrace();

  144. }

  145. }

  146.  
  147. // 列头单元格样式

  148. public HSSFCellStyle getColumnTopStyle(HSSFWorkbook workbook) {

  149.  
  150. // 设置字体

  151. HSSFFont font = workbook.createFont();

  152. //设置字体大小

  153. font.setFontHeightInPoints((short) 12);

  154. //字体加粗

  155. font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);

  156. //设置字体名字

  157. font.setFontName("微软雅黑");

  158. //设置样式;

  159. HSSFCellStyle style = workbook.createCellStyle();

  160. //设置底边框;

  161. style.setBorderBottom(HSSFCellStyle.BORDER_THIN);

  162. //设置底边框颜色;

  163. style.setBottomBorderColor(HSSFColor.BLACK.index);

  164. //设置左边框;

  165. style.setBorderLeft(HSSFCellStyle.BORDER_THIN);

  166. //设置左边框颜色;

  167. style.setLeftBorderColor(HSSFColor.BLACK.index);

  168. //设置右边框;

  169. style.setBorderRight(HSSFCellStyle.BORDER_THIN);

  170. //设置右边框颜色;

  171. style.setRightBorderColor(HSSFColor.BLACK.index);

  172. //设置顶边框;

  173. style.setBorderTop(HSSFCellStyle.BORDER_THIN);

  174. //设置顶边框颜色;

  175. style.setTopBorderColor(HSSFColor.BLACK.index);

  176. //在样式用应用设置的字体;

  177. style.setFont(font);

  178. //设置自动换行;

  179. style.setWrapText(false);

  180. //设置水平对齐的样式为居中对齐;

  181. style.setAlignment(HSSFCellStyle.ALIGN_CENTER);

  182. //设置垂直对齐的样式为居中对齐;

  183. style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);

  184.  
  185. return style;

  186.  
  187. }

  188.  
  189. // 列数据信息单元格样式

  190. public HSSFCellStyle getStyle(HSSFWorkbook workbook) {

  191. // 设置字体

  192. HSSFFont font = workbook.createFont();

  193. //设置字体名字

  194. font.setFontName("微软雅黑");

  195. //设置样式;

  196. HSSFCellStyle style = workbook.createCellStyle();

  197. //设置底边框;

  198. style.setBorderBottom(HSSFCellStyle.BORDER_THIN);

  199. //设置底边框颜色;

  200. style.setBottomBorderColor(HSSFColor.BLACK.index);

  201. //设置左边框;

  202. style.setBorderLeft(HSSFCellStyle.BORDER_THIN);

  203. //设置左边框颜色;

  204. style.setLeftBorderColor(HSSFColor.BLACK.index);

  205. //设置右边框;

  206. style.setBorderRight(HSSFCellStyle.BORDER_THIN);

  207. //设置右边框颜色;

  208. style.setRightBorderColor(HSSFColor.BLACK.index);

  209. //设置顶边框;

  210. style.setBorderTop(HSSFCellStyle.BORDER_THIN);

  211. //设置顶边框颜色;

  212. style.setTopBorderColor(HSSFColor.BLACK.index);

  213. //在样式用应用设置的字体;

  214. style.setFont(font);

  215. //设置自动换行;

  216. style.setWrapText(false);

  217. //设置水平对齐的样式为居中对齐;

  218. style.setAlignment(HSSFCellStyle.ALIGN_CENTER);

  219. //设置垂直对齐的样式为居中对齐;

  220. style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);

  221. return style;

  222. }

  223. }

上面这段通用实体类CommonExcel可以原封不动地直接照抄,其中有几个部分需要注明一下:

  1. getColumnTopStyle()、getStyle()两个函数是对列头单元格(title和rowName)、列数据单元格(dataList)进行定义格式,可以自行修改;
  2. 默认规定列数据单元格,第一列为数字列,从第二列开始为字符串列。

具体每个成员在最终Excel中的位置,见下图:

 

后台Servlet层的逻辑代码

关于数据库的读取就不展开写了,就直接调用Service层的代码了。

主要的工作就是将CommonExcel中5个参数的主要四个参数(title、rowName、dataList、fileName)初始化并赋值,最后创建CommonExcel对象,调用downloadExcel()方法就行了。

 
  1. public class DownLoadServlet extends HttpServlet {

  2.  
  3. public void doGet(HttpServletRequest request, HttpServletResponse response)

  4. throws ServletException, IOException {

  5. this.doPost(request, response);

  6. }

  7.  
  8. public void doPost(HttpServletRequest request, HttpServletResponse response)

  9. throws ServletException, IOException {

  10. // Service层获取数据库的数据

  11. List<User> userList=userService.findAllUser();

  12.  
  13. // 定义标题(第一行)

  14. String title = "用户报表";

  15.  
  16. // 定义列名(第二行)

  17. String[] rowsName = new String[]{"序号","用户名","密码","邮箱","手机号","地址"};

  18.  
  19. // 定义主题内容(第三行起)

  20. List<Object[]> dataList = new ArrayList<Object[]>();

  21.  
  22. // 定义每一行的临时变量,并放入数据

  23. Object[] objs = null;

  24. for (int i = 0; i < userList.size(); i++) {

  25. objs = new Object[rowsName.length];

  26. objs[0] = i;

  27. objs[1] = userList.get(i).getUsername();

  28. objs[2] = userList.get(i).getPassword();

  29. objs[3] = userList.get(i).getEmail();

  30. objs[4] = userList.get(i).getPhone();

  31. objs[5] = userList.get(i).getAddress();

  32. dataList.add(objs);

  33. }

  34.  
  35. // 定义Excel文件名

  36. String fileName="用户报表"+String.valueOf(System.currentTimeMillis()).substring(4,13)+".xls";

  37.  
  38. // 创建CommonExcel对象,调用downloadExcel()对象导出Excel

  39. CommonExcel ex = new CommonExcel(title, rowsName, dataList,response,fileName);

  40. try {

  41. ex.downloadExcel();

  42. } catch (Exception e) {

  43. e.printStackTrace();

  44. }

  45. }

  46. }

最终的点击页面超链接,弹出下载框:

直接点击下载,就可以下载Excel文件了,文件打开内容就是前文的Excel图片了。