服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - Java教程 - Java导出Excel通用工具类实例代码

Java导出Excel通用工具类实例代码

2021-09-01 13:25冰 河 Java教程

这篇文章主要给大家介绍了关于Java导出Excel通用工具类的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

一、概述

相信大家在工作过程中,都会遇到这样一个需求,就是将相关的数据列表导出成excel,那么,有没有通用的导出方式呢,这里,就带着大家一起来用Java实现一个通用的导出Excel的工具。

二、项目实现

1、构建pom.xml

我们的工程是利用Maven来构建的,项目具体搭建过程大家可以参见网上其他资料,这里我们仅给出最核心的Maven配置

  1. <dependency>
  2. <groupId>org.apache.poi</groupId>
  3. <artifactId>poi-scratchpad</artifactId>
  4. <version>3.11-beta2</version>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.apache.poi</groupId>
  8. <artifactId>poi-ooxml</artifactId>
  9. <version>3.11-beta2</version>
  10. </dependency>
  11. <dependency>
  12. <groupId>org.apache.poi</groupId>
  13. <artifactId>poi-ooxml-schemas</artifactId>
  14. <version>3.11-beta2</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.apache.poi</groupId>
  18. <artifactId>poi-excelant</artifactId>
  19. <version>3.11-beta2</version>
  20. </dependency>

2、编写ExportExcelUtil类

这个类使我们整个工具的核心,它实现了Excel文件的导出功能,具体代码如下:

  1. package com.lyz.utils.excel.poi;
  2. import java.io.IOException;
  3. import java.io.OutputStream;
  4. import java.lang.reflect.Field;
  5. import java.lang.reflect.InvocationTargetException;
  6. import java.lang.reflect.Method;
  7. import java.text.SimpleDateFormat;
  8. import java.util.Collection;
  9. import java.util.Date;
  10. import java.util.Iterator;
  11. import java.util.regex.Matcher;
  12. import java.util.regex.Pattern;
  13.  
  14. import org.apache.commons.lang3.StringUtils;
  15. import org.apache.poi.hssf.usermodel.HSSFCell;
  16. import org.apache.poi.hssf.usermodel.HSSFCellStyle;
  17. import org.apache.poi.hssf.usermodel.HSSFFont;
  18. import org.apache.poi.hssf.usermodel.HSSFRichTextString;
  19. import org.apache.poi.hssf.usermodel.HSSFRow;
  20. import org.apache.poi.hssf.usermodel.HSSFSheet;
  21. import org.apache.poi.hssf.usermodel.HSSFWorkbook;
  22. import org.apache.poi.hssf.util.HSSFColor;
  23. import org.apache.poi.xssf.usermodel.XSSFCell;
  24. import org.apache.poi.xssf.usermodel.XSSFCellStyle;
  25. import org.apache.poi.xssf.usermodel.XSSFColor;
  26. import org.apache.poi.xssf.usermodel.XSSFFont;
  27. import org.apache.poi.xssf.usermodel.XSSFRichTextString;
  28. import org.apache.poi.xssf.usermodel.XSSFRow;
  29. import org.apache.poi.xssf.usermodel.XSSFSheet;
  30. import org.apache.poi.xssf.usermodel.XSSFWorkbook;
  31.  
  32. /**
  33. * 导出Excel
  34. * @author liuyazhuang
  35. *
  36. * @param <T>
  37. */
  38. public class ExportExcelUtil<T>{
  39.  
  40. // 2007 版本以上 最大支持1048576行
  41. public final static String EXCEl_FILE_2007 = "2007";
  42. // 2003 版本 最大支持65536 行
  43. public final static String EXCEL_FILE_2003 = "2003";
  44.  
  45. /**
  46. * <p>
  47. * 导出无头部标题行Excel <br>
  48. * 时间格式默认:yyyy-MM-dd hh:mm:ss <br>
  49. * </p>
  50. *
  51. * @param title 表格标题
  52. * @param dataset 数据集合
  53. * @param out 输出流
  54. * @param version 2003 或者 2007,不传时默认生成2003版本
  55. */
  56. public void exportExcel(String title, Collection<T> dataset, OutputStream out, String version) {
  57. if(StringUtils.isEmpty(version) || EXCEL_FILE_2003.equals(version.trim())){
  58. exportExcel2003(title, null, dataset, out, "yyyy-MM-dd HH:mm:ss");
  59. }else{
  60. exportExcel2007(title, null, dataset, out, "yyyy-MM-dd HH:mm:ss");
  61. }
  62. }
  63.  
  64. /**
  65. * <p>
  66. * 导出带有头部标题行的Excel <br>
  67. * 时间格式默认:yyyy-MM-dd hh:mm:ss <br>
  68. * </p>
  69. *
  70. * @param title 表格标题
  71. * @param headers 头部标题集合
  72. * @param dataset 数据集合
  73. * @param out 输出流
  74. * @param version 2003 或者 2007,不传时默认生成2003版本
  75. */
  76. public void exportExcel(String title,String[] headers, Collection<T> dataset, OutputStream out,String version) {
  77. if(StringUtils.isBlank(version) || EXCEL_FILE_2003.equals(version.trim())){
  78. exportExcel2003(title, headers, dataset, out, "yyyy-MM-dd HH:mm:ss");
  79. }else{
  80. exportExcel2007(title, headers, dataset, out, "yyyy-MM-dd HH:mm:ss");
  81. }
  82. }
  83.  
  84. /**
  85. * <p>
  86. * 通用Excel导出方法,利用反射机制遍历对象的所有字段,将数据写入Excel文件中 <br>
  87. * 此版本生成2007以上版本的文件 (文件后缀:xlsx)
  88. * </p>
  89. *
  90. * @param title
  91. * 表格标题名
  92. * @param headers
  93. * 表格头部标题集合
  94. * @param dataset
  95. * 需要显示的数据集合,集合中一定要放置符合JavaBean风格的类的对象。此方法支持的
  96. * JavaBean属性的数据类型有基本数据类型及String,Date
  97. * @param out
  98. * 与输出设备关联的流对象,可以将EXCEL文档导出到本地文件或者网络中
  99. * @param pattern
  100. * 如果有时间数据,设定输出格式。默认为"yyyy-MM-dd hh:mm:ss"
  101. */
  102. @SuppressWarnings({ "unchecked", "rawtypes" })
  103. public void exportExcel2007(String title, String[] headers, Collection<T> dataset, OutputStream out, String pattern) {
  104. // 声明一个工作薄
  105. XSSFWorkbook workbook = new XSSFWorkbook();
  106. // 生成一个表格
  107. XSSFSheet sheet = workbook.createSheet(title);
  108. // 设置表格默认列宽度为15个字节
  109. sheet.setDefaultColumnWidth(20);
  110. // 生成一个样式
  111. XSSFCellStyle style = workbook.createCellStyle();
  112. // 设置这些样式
  113. style.setFillForegroundColor(new XSSFColor(java.awt.Color.gray));
  114. style.setFillPattern(XSSFCellStyle.SOLID_FOREGROUND);
  115. style.setBorderBottom(XSSFCellStyle.BORDER_THIN);
  116. style.setBorderLeft(XSSFCellStyle.BORDER_THIN);
  117. style.setBorderRight(XSSFCellStyle.BORDER_THIN);
  118. style.setBorderTop(XSSFCellStyle.BORDER_THIN);
  119. style.setAlignment(XSSFCellStyle.ALIGN_CENTER);
  120. // 生成一个字体
  121. XSSFFont font = workbook.createFont();
  122. font.setBoldweight(XSSFFont.BOLDWEIGHT_BOLD);
  123. font.setFontName("宋体");
  124. font.setColor(new XSSFColor(java.awt.Color.BLACK));
  125. font.setFontHeightInPoints((short) 11);
  126. // 把字体应用到当前的样式
  127. style.setFont(font);
  128. // 生成并设置另一个样式
  129. XSSFCellStyle style2 = workbook.createCellStyle();
  130. style2.setFillForegroundColor(new XSSFColor(java.awt.Color.WHITE));
  131. style2.setFillPattern(XSSFCellStyle.SOLID_FOREGROUND);
  132. style2.setBorderBottom(XSSFCellStyle.BORDER_THIN);
  133. style2.setBorderLeft(XSSFCellStyle.BORDER_THIN);
  134. style2.setBorderRight(XSSFCellStyle.BORDER_THIN);
  135. style2.setBorderTop(XSSFCellStyle.BORDER_THIN);
  136. style2.setAlignment(XSSFCellStyle.ALIGN_CENTER);
  137. style2.setVerticalAlignment(XSSFCellStyle.VERTICAL_CENTER);
  138. // 生成另一个字体
  139. XSSFFont font2 = workbook.createFont();
  140. font2.setBoldweight(XSSFFont.BOLDWEIGHT_NORMAL);
  141. // 把字体应用到当前的样式
  142. style2.setFont(font2);
  143.  
  144. // 产生表格标题行
  145. XSSFRow row = sheet.createRow(0);
  146. XSSFCell cellHeader;
  147. for (int i = 0; i < headers.length; i++) {
  148. cellHeader = row.createCell(i);
  149. cellHeader.setCellStyle(style);
  150. cellHeader.setCellValue(new XSSFRichTextString(headers[i]));
  151. }
  152.  
  153. // 遍历集合数据,产生数据行
  154. Iterator<T> it = dataset.iterator();
  155. int index = 0;
  156. T t;
  157. Field[] fields;
  158. Field field;
  159. XSSFRichTextString richString;
  160. Pattern p = Pattern.compile("^//d+(//.//d+)?$");
  161. Matcher matcher;
  162. String fieldName;
  163. String getMethodName;
  164. XSSFCell cell;
  165. Class tCls;
  166. Method getMethod;
  167. Object value;
  168. String textValue;
  169. SimpleDateFormat sdf = new SimpleDateFormat(pattern);
  170. while (it.hasNext()) {
  171. index++;
  172. row = sheet.createRow(index);
  173. t = (T) it.next();
  174. // 利用反射,根据JavaBean属性的先后顺序,动态调用getXxx()方法得到属性值
  175. fields = t.getClass().getDeclaredFields();
  176. for (int i = 0; i < fields.length; i++) {
  177. cell = row.createCell(i);
  178. cell.setCellStyle(style2);
  179. field = fields[i];
  180. fieldName = field.getName();
  181. getMethodName = "get" + fieldName.substring(0, 1).toUpperCase()
  182. + fieldName.substring(1);
  183. try {
  184. tCls = t.getClass();
  185. getMethod = tCls.getMethod(getMethodName, new Class[] {});
  186. value = getMethod.invoke(t, new Object[] {});
  187. // 判断值的类型后进行强制类型转换
  188. textValue = null;
  189. if (value instanceof Integer) {
  190. cell.setCellValue((Integer) value);
  191. } else if (value instanceof Float) {
  192. textValue = String.valueOf((Float) value);
  193. cell.setCellValue(textValue);
  194. } else if (value instanceof Double) {
  195. textValue = String.valueOf((Double) value);
  196. cell.setCellValue(textValue);
  197. } else if (value instanceof Long) {
  198. cell.setCellValue((Long) value);
  199. }
  200. if (value instanceof Boolean) {
  201. textValue = "是";
  202. if (!(Boolean) value) {
  203. textValue = "否";
  204. }
  205. } else if (value instanceof Date) {
  206. textValue = sdf.format((Date) value);
  207. } else {
  208. // 其它数据类型都当作字符串简单处理
  209. if (value != null) {
  210. textValue = value.toString();
  211. }
  212. }
  213. if (textValue != null) {
  214. matcher = p.matcher(textValue);
  215. if (matcher.matches()) {
  216. // 是数字当作double处理
  217. cell.setCellValue(Double.parseDouble(textValue));
  218. } else {
  219. richString = new XSSFRichTextString(textValue);
  220. cell.setCellValue(richString);
  221. }
  222. }
  223. } catch (SecurityException e) {
  224. e.printStackTrace();
  225. } catch (NoSuchMethodException e) {
  226. e.printStackTrace();
  227. } catch (IllegalArgumentException e) {
  228. e.printStackTrace();
  229. } catch (IllegalAccessException e) {
  230. e.printStackTrace();
  231. } catch (InvocationTargetException e) {
  232. e.printStackTrace();
  233. } finally {
  234. // 清理资源
  235. }
  236. }
  237. }
  238. try {
  239. workbook.write(out);
  240. } catch (IOException e) {
  241. e.printStackTrace();
  242. }
  243. }
  244.  
  245. /**
  246. * <p>
  247. * 通用Excel导出方法,利用反射机制遍历对象的所有字段,将数据写入Excel文件中 <br>
  248. * 此方法生成2003版本的excel,文件名后缀:xls <br>
  249. * </p>
  250. *
  251. * @param title
  252. * 表格标题名
  253. * @param headers
  254. * 表格头部标题集合
  255. * @param dataset
  256. * 需要显示的数据集合,集合中一定要放置符合JavaBean风格的类的对象。此方法支持的
  257. * JavaBean属性的数据类型有基本数据类型及String,Date
  258. * @param out
  259. * 与输出设备关联的流对象,可以将EXCEL文档导出到本地文件或者网络中
  260. * @param pattern
  261. * 如果有时间数据,设定输出格式。默认为"yyyy-MM-dd hh:mm:ss"
  262. */
  263. @SuppressWarnings({ "unchecked", "rawtypes" })
  264. public void exportExcel2003(String title, String[] headers, Collection<T> dataset, OutputStream out, String pattern) {
  265. // 声明一个工作薄
  266. HSSFWorkbook workbook = new HSSFWorkbook();
  267. // 生成一个表格
  268. HSSFSheet sheet = workbook.createSheet(title);
  269. // 设置表格默认列宽度为15个字节
  270. sheet.setDefaultColumnWidth(20);
  271. // 生成一个样式
  272. HSSFCellStyle style = workbook.createCellStyle();
  273. // 设置这些样式
  274. style.setFillForegroundColor(HSSFColor.GREY_50_PERCENT.index);
  275. style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
  276. style.setBorderBottom(HSSFCellStyle.BORDER_THIN);
  277. style.setBorderLeft(HSSFCellStyle.BORDER_THIN);
  278. style.setBorderRight(HSSFCellStyle.BORDER_THIN);
  279. style.setBorderTop(HSSFCellStyle.BORDER_THIN);
  280. style.setAlignment(HSSFCellStyle.ALIGN_CENTER);
  281. // 生成一个字体
  282. HSSFFont font = workbook.createFont();
  283. font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
  284. font.setFontName("宋体");
  285. font.setColor(HSSFColor.WHITE.index);
  286. font.setFontHeightInPoints((short) 11);
  287. // 把字体应用到当前的样式
  288. style.setFont(font);
  289. // 生成并设置另一个样式
  290. HSSFCellStyle style2 = workbook.createCellStyle();
  291. style2.setFillForegroundColor(HSSFColor.WHITE.index);
  292. style2.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
  293. style2.setBorderBottom(HSSFCellStyle.BORDER_THIN);
  294. style2.setBorderLeft(HSSFCellStyle.BORDER_THIN);
  295. style2.setBorderRight(HSSFCellStyle.BORDER_THIN);
  296. style2.setBorderTop(HSSFCellStyle.BORDER_THIN);
  297. style2.setAlignment(HSSFCellStyle.ALIGN_CENTER);
  298. style2.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
  299. // 生成另一个字体
  300. HSSFFont font2 = workbook.createFont();
  301. font2.setBoldweight(HSSFFont.BOLDWEIGHT_NORMAL);
  302. // 把字体应用到当前的样式
  303. style2.setFont(font2);
  304.  
  305. // 产生表格标题行
  306. HSSFRow row = sheet.createRow(0);
  307. HSSFCell cellHeader;
  308. for (int i = 0; i < headers.length; i++) {
  309. cellHeader = row.createCell(i);
  310. cellHeader.setCellStyle(style);
  311. cellHeader.setCellValue(new HSSFRichTextString(headers[i]));
  312. }
  313.  
  314. // 遍历集合数据,产生数据行
  315. Iterator<T> it = dataset.iterator();
  316. int index = 0;
  317. T t;
  318. Field[] fields;
  319. Field field;
  320. HSSFRichTextString richString;
  321. Pattern p = Pattern.compile("^//d+(//.//d+)?$");
  322. Matcher matcher;
  323. String fieldName;
  324. String getMethodName;
  325. HSSFCell cell;
  326. Class tCls;
  327. Method getMethod;
  328. Object value;
  329. String textValue;
  330. SimpleDateFormat sdf = new SimpleDateFormat(pattern);
  331. while (it.hasNext()) {
  332. index++;
  333. row = sheet.createRow(index);
  334. t = (T) it.next();
  335. // 利用反射,根据JavaBean属性的先后顺序,动态调用getXxx()方法得到属性值
  336. fields = t.getClass().getDeclaredFields();
  337. for (int i = 0; i < fields.length; i++) {
  338. cell = row.createCell(i);
  339. cell.setCellStyle(style2);
  340. field = fields[i];
  341. fieldName = field.getName();
  342. getMethodName = "get" + fieldName.substring(0, 1).toUpperCase()
  343. + fieldName.substring(1);
  344. try {
  345. tCls = t.getClass();
  346. getMethod = tCls.getMethod(getMethodName, new Class[] {});
  347. value = getMethod.invoke(t, new Object[] {});
  348. // 判断值的类型后进行强制类型转换
  349. textValue = null;
  350. if (value instanceof Integer) {
  351. cell.setCellValue((Integer) value);
  352. } else if (value instanceof Float) {
  353. textValue = String.valueOf((Float) value);
  354. cell.setCellValue(textValue);
  355. } else if (value instanceof Double) {
  356. textValue = String.valueOf((Double) value);
  357. cell.setCellValue(textValue);
  358. } else if (value instanceof Long) {
  359. cell.setCellValue((Long) value);
  360. }
  361. if (value instanceof Boolean) {
  362. textValue = "是";
  363. if (!(Boolean) value) {
  364. textValue = "否";
  365. }
  366. } else if (value instanceof Date) {
  367. textValue = sdf.format((Date) value);
  368. } else {
  369. // 其它数据类型都当作字符串简单处理
  370. if (value != null) {
  371. textValue = value.toString();
  372. }
  373. }
  374. if (textValue != null) {
  375. matcher = p.matcher(textValue);
  376. if (matcher.matches()) {
  377. // 是数字当作double处理
  378. cell.setCellValue(Double.parseDouble(textValue));
  379. } else {
  380. richString = new HSSFRichTextString(textValue);
  381. cell.setCellValue(richString);
  382. }
  383. }
  384. } catch (SecurityException e) {
  385. e.printStackTrace();
  386. } catch (NoSuchMethodException e) {
  387. e.printStackTrace();
  388. } catch (IllegalArgumentException e) {
  389. e.printStackTrace();
  390. } catch (IllegalAccessException e) {
  391. e.printStackTrace();
  392. } catch (InvocationTargetException e) {
  393. e.printStackTrace();
  394. } finally {
  395. // 清理资源
  396. }
  397. }
  398. }
  399. try {
  400. workbook.write(out);
  401. } catch (IOException e) {
  402. e.printStackTrace();
  403. }
  404. }
  405. }

为了演示导出功能,这里我们创建了一个Student学生类。

3、创建Student类

  1. package com.lyz.utils.excel.poi;
  2.  
  3. /**
  4. * 例子JavaBean
  5. * @author liuyazhuang
  6. *
  7. */
  8. public class Student {
  9. private int id;
  10. private String name;
  11. private String sex;
  12.  
  13. public Student(int id, String name, String sex) {
  14. this.id = id;
  15. this.name = name;
  16. this.sex = sex;
  17. }
  18.  
  19. public int getId() {
  20. return id;
  21. }
  22.  
  23. public void setId(int id) {
  24. this.id = id;
  25. }
  26.  
  27. public String getName() {
  28. return name;
  29. }
  30.  
  31. public void setName(String name) {
  32. this.name = name;
  33. }
  34.  
  35. public String getSex() {
  36. return sex;
  37. }
  38.  
  39. public void setSex(String sex) {
  40. this.sex = sex;
  41. }
  42. }

4、创建测试类TestExportExcelUtil

这个类,主要是用来测试我们的工具类。具体代码如下:

  1. package com.lyz.test;
  2.  
  3. import java.io.FileOutputStream;
  4. import java.util.ArrayList;
  5. import java.util.List;
  6.  
  7. import com.lyz.utils.excel.poi.ExportExcelUtil;
  8. import com.lyz.utils.excel.poi.Student;
  9.  
  10. /**
  11. * 测试文件导出
  12. * @author liuyazhuang
  13. *
  14. */
  15. public class TestExportExcelUtil {
  16.  
  17. public static void main(String[] args) throws Exception{
  18. ExportExcelUtil<Student> util = new ExportExcelUtil<Student>();
  19. // 准备数据
  20. List<Student> list = new ArrayList<>();
  21. for (int i = 0; i < 10; i++) {
  22. list.add(new Student(111,"张三asdf","男"));
  23. list.add(new Student(111,"李四asd","男"));
  24. list.add(new Student(111,"王五","女"));
  25. }
  26. String[] columnNames = { "ID", "姓名", "性别" };
  27. util.exportExcel("用户导出", columnNames, list, new FileOutputStream("E:/test.xls"), ExportExcelUtil.EXCEL_FILE_2003);
  28. }
  29. }

5、测试

我们运行TestExportExcelUtil类,会发现在我们的E盘下生成了test.xls文件,具体如下:

Java导出Excel通用工具类实例代码

三、项目扩展

以上实现均是在本地磁盘生成excel文件,但更多的时候,我们需要通过点击网页上的某个按钮来自动生成并下载Excel文档,那么,这又如何实现呢?下面我们就一起来实现这个功能。

1、扩展ExportExcelUtil类

根据Java的继承思想,我们不在ExportExcelUtil类上修改添加,我们创建一个ExportExcelUtil类的子类ExportExcelWrapper,这个类继承ExportExcelUtil的所有功能,同时,扩展了网页生成Excel的功能。具体代码如下:

  1. package com.lyz.utils.excel.poi;
  2.  
  3. import java.net.URLEncoder;
  4. import java.util.Collection;
  5.  
  6. import javax.servlet.http.HttpServletResponse;
  7.  
  8. import org.apache.commons.lang3.StringUtils;
  9.  
  10. /**
  11. * 包装类
  12. * @author liuyazhuang
  13. *
  14. * @param <T>
  15. */
  16. public class ExportExcelWrapper<T> extends ExportExcelUtil<T> {
  17. /**
  18. * <p>
  19. * 导出带有头部标题行的Excel <br>
  20. * 时间格式默认:yyyy-MM-dd hh:mm:ss <br>
  21. * </p>
  22. *
  23. * @param title 表格标题
  24. * @param headers 头部标题集合
  25. * @param dataset 数据集合
  26. * @param out 输出流
  27. * @param version 2003 或者 2007,不传时默认生成2003版本
  28. */
  29. public void exportExcel(String fileName, String title, String[] headers, Collection<T> dataset, HttpServletResponse response,String version) {
  30. try {
  31. response.setContentType("application/vnd.ms-excel");
  32. response.addHeader("Content-Disposition", "attachment;filename="+ URLEncoder.encode(fileName, "UTF-8") + ".xls");
  33. if(StringUtils.isBlank(version) || EXCEL_FILE_2003.equals(version.trim())){
  34. exportExcel2003(title, headers, dataset, response.getOutputStream(), "yyyy-MM-dd HH:mm:ss");
  35. }else{
  36. exportExcel2007(title, headers, dataset, response.getOutputStream(), "yyyy-MM-dd HH:mm:ss");
  37. }
  38. } catch (Exception e) {
  39. e.printStackTrace();
  40. }
  41. }
  42. }

这样,我们可以在Controller层调用ExportExcelWrapper将相关的数据和HttpServletResponse传递进来,即可实现通过网页生生并下载Excel文档了。

2、编写Controller类

  1. @Controller("test")
  2. @RequestMapping("/test")
  3. public class TestController {
  4. @RequestMapping("/get/excel")
  5. public void getExcel(HttpServletRequest request, HttpServletResponse response) throws Exception {
  6. // 准备数据
  7. List<Student> list = new ArrayList<>();
  8. for (int i = 0; i < 10; i++) {
  9. list.add(new Student(111,"张三asdf","男"));
  10. list.add(new Student(111,"李四asd","男"));
  11. list.add(new Student(111,"王五","女"));
  12. }
  13. String[] columnNames = { "ID", "姓名", " 性别"};
  14. String fileName = "excel1";
  15. ExportExcelWrapper<Student> util = new ExportExcelWrapper<Student>();
  16. util.exportExcel(fileName, fileName, columnNames, list, response, ExportExcelUtil.EXCEL_FILE_2003);
  17. }
  18. }

3、编写index.html

这个网页很简单,具体实现如下:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>导出Excel</title>
  6. </head>
  7. <body>
  8. <form id="form_login" action="http://127.0.0.1:8080/test/get/excel" method="post">
  9.  
  10. </form>
  11. <button id="btn-submit" onclick="beforeSubmit()">Submit</button>
  12. <script type="text/javascript">
  13. var loginForm = document.getElementById('form_login');
  14. function beforeSubmit() {
  15. loginForm.submit();
  16. }
  17. </script>
  18. </body>
  19. </html>

4、测试

我们将程序发布到Tomcat,并点击网上的按钮,效果如下:

Java导出Excel通用工具类实例代码

我们打开excel1.xls文件如下:

Java导出Excel通用工具类实例代码

至此,我们的工具就编写完成了。

总结

到此这篇关于Java导出Excel通用工具类的文章就介绍到这了,更多相关Java导出Excel内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://binghe.blog.csdn.net/article/details/79659605

延伸 · 阅读

精彩推荐