一、首先导入jar包:下载地址:http://download.csdn.net/detail/u011159417/9700784
二、建立一个person类,(例如IP表)三、实现导出数据到excel表一共分为六步: 1、创建一个workbook对象,对应一个excel文件:HSSFWorkbook wb = new HSSFWorkbook(); 2、在workbook中,添加一个sheet:HSSFSheet sheet = wb.createSheet("sheet_test"); 3、在sheet中添加表头第0行:HSSFRow row = sheet.createRow((int) 0); 4、创建单元格,并设置表头值 设置表头居中: HSSFCellStyle style = wb.createCellStyle(); style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 创建一个居中格式 setSheetHeader(row, style); // 设置表头行各个列的名字, 5、获取数据到excel表格中,数据应该是从数据库中获取: List<Person> list = getStudentDatas(); // 添加导出数据到表中 insertDatasToSheet(sheet, list); 6、将文件保存到指定位置: private void writeExcelToDisk(String filePath, HSSFWorkbook wb) { try { FileOutputStream fout = new FileOutputStream(filePath); wb.write(fout); fout.close(); System.out.println("excel已经导出到:" + filePath); } catch (Exception e) { e.printStackTrace(); } }
//CreateExcelToDisk.java
package com._test.excel;
import java.io.FileOutputStream; import java.util.ArrayList; import java.util.List; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFCellStyle; import org.apache.poi.hssf.usermodel.HSSFRow; import org.apache.poi.hssf.usermodel.HSSFSheet; import org.apache.poi.hssf.usermodel.HSSFWorkbook; /** * 实现导出数据到excel表的功能类 */ public class CreateExcelToDisk { /** * 获得数据集合 * * @return */ private static List<Person> getStudentDatas() { List<Person> list = new ArrayList<Person>(); for (int i = 0; i < 5; i++) { Person stu = new Person(i, "学生_" + i, 10 + i); list.add(stu); } return list; } /** * 导出excel文件 */ public void exprotExcel(String filePath) { // 第一步、创建一个workbook对象,对应一个Excel文件 HSSFWorkbook wb = new HSSFWorkbook(); // 第二步、在workbook中添加一个sheet,对应Excel文件中的sheet HSSFSheet sheet = wb.createSheet("sheet_test");// 这个sheetname随便起 // 第三步,在sheet中添加表头第0行 HSSFRow row = sheet.createRow((int) 0); // 第四步,创建单元格,并设置值表头 设置表头居中 HSSFCellStyle style = wb.createCellStyle(); style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 创建一个居中格式 // 设置表头行各个列的名字, setSheetHeader(row, style); // 第五步,获得要导出到excel表的数据 实际应用中这些数据从数据库得到, List<Person> list = getStudentDatas(); // 添加导出数据到表中 insertDatasToSheet(sheet, list); // 第六步,将excel文件存到指定位置 writeExcelToDisk(filePath, wb); } /** * 将excel文件存到指定位置 * * @param filePath * @param wb */ private void writeExcelToDisk(String filePath, HSSFWorkbook wb) { try { FileOutputStream fout = new FileOutputStream(filePath); wb.write(fout); fout.close(); System.out.println("excel已经导出到:" + filePath); } catch (Exception e) { e.printStackTrace(); } } /** * 添加导出数据到表中 * * @param sheet * @param list */ private void insertDatasToSheet(HSSFSheet sheet, List<Person> list) { HSSFCell cell = null; HSSFRow row = null; for (int i = 0; i < list.size(); i++) { row = sheet.createRow((int) i + 1); Person stu = (Person) list.get(i); // 创建单元格,并设置各个列中实际数据的值 cell = row.createCell((short) 0); cell.setEncoding(HSSFCell.ENCODING_UTF_16); cell.setCellValue((double) stu.getId()); cell = row.createCell((short) 1); cell.setEncoding(HSSFCell.ENCODING_UTF_16); cell.setCellValue(stu.getName()); cell = row.createCell((short) 2); cell.setEncoding(HSSFCell.ENCODING_UTF_16); cell.setCellValue((double) stu.getAge()); } } /** * 设置表头行各个列的名字 * * @param row * @param style */ private void setSheetHeader(HSSFRow row, HSSFCellStyle style) { HSSFCell cell = row.createCell((short) 0); cell.setCellStyle(style); // 这个输出编码必须设置,否则汉字会乱码 cell.setEncoding(HSSFCell.ENCODING_UTF_16); cell.setCellValue("学号"); cell = row.createCell((short) 1); cell.setEncoding(HSSFCell.ENCODING_UTF_16); cell.setCellValue("姓名"); cell.setCellStyle(style); cell = row.createCell((short) 2); cell.setEncoding(HSSFCell.ENCODING_UTF_16); cell.setCellValue("年龄"); cell.setCellStyle(style); } public static void main(String[] args) { String filePath = "E:/students.xls"; CreateExcelToDisk excel = new CreateExcelToDisk(); excel.exprotExcel(filePath); } }