1.首先下载poi-3.6-20091214.jar,下载地址如下:
http://download.csdn.net/detail/evangel_z/3895051
2.Student.java
- import java.util.Date;
- public class Student
- {
- private int id;
- private String name;
- private int age;
- private Date birth;
- public Student()
- {
- }
- public Student(int id, String name, int age, Date birth)
- {
- this.id = id;
- this.name = name;
- this.age = age;
- this.birth = birth;
- }
- public int getId()
- {
- return id;
- }
- public void setId(int id)
- {
- this.id = id;
- }
- public String getName()
- {
- return name;
- }
- public void setName(String name)
- {
- this.name = name;
- }
- public int getAge()
- {
- return age;
- }
- public void setAge(int age)
- {
- this.age = age;
- }
- public Date getBirth()
- {
- return birth;
- }
- public void setBirth(Date birth)
- {
- this.birth = birth;
- }
- }
- import java.io.FileOutputStream;
- import java.text.SimpleDateFormat;
- 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;
- public class CreateSimpleExcelToDisk
- {
- /**
- * @功能:手工构建一个简单格式的Excel
- */
- private static List<Student> getStudent() throws Exception
- {
- List list = new ArrayList();
- SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd");
- Student user1 = new Student(1, "张三", 16, df.parse("1997-03-12"));
- Student user2 = new Student(2, "李四", 17, df.parse("1996-08-12"));
- Student user3 = new Student(3, "王五", 26, df.parse("1985-11-12"));
- list.add(user1);
- list.add(user2);
- list.add(user3);
- return list;
- }
- public static void main(String[] args) throws Exception
- {
- // 第一步,创建一个webbook,对应一个Excel文件
- HSSFWorkbook wb = new HSSFWorkbook();
- // 第二步,在webbook中添加一个sheet,对应Excel文件中的sheet
- HSSFSheet sheet = wb.createSheet("学生表一");
- // 第三步,在sheet中添加表头第0行,注意老版本poi对Excel的行数列数有限制short
- HSSFRow row = sheet.createRow((int) 0);
- // 第四步,创建单元格,并设置值表头 设置表头居中
- HSSFCellStyle style = wb.createCellStyle();
- style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 创建一个居中格式
- HSSFCell cell = row.createCell((short) 0);
- cell.setCellValue("学号");
- cell.setCellStyle(style);
- cell = row.createCell((short) 1);
- cell.setCellValue("姓名");
- cell.setCellStyle(style);
- cell = row.createCell((short) 2);
- cell.setCellValue("年龄");
- cell.setCellStyle(style);
- cell = row.createCell((short) 3);
- cell.setCellValue("生日");
- cell.setCellStyle(style);
- // 第五步,写入实体数据 实际应用中这些数据从数据库得到,
- List list = CreateSimpleExcelToDisk.getStudent();
- for (int i = 0; i < list.size(); i++)
- {
- row = sheet.createRow((int) i + 1);
- Student stu = (Student) list.get(i);
- // 第四步,创建单元格,并设置值
- row.createCell((short) 0).setCellValue((double) stu.getId());
- row.createCell((short) 1).setCellValue(stu.getName());
- row.createCell((short) 2).setCellValue((double) stu.getAge());
- cell = row.createCell((short) 3);
- cell.setCellValue(new SimpleDateFormat("yyyy-mm-dd").format(stu
- .getBirth()));
- }
- // 第六步,将文件存到指定位置
- try
- {
- FileOutputStream fout = new FileOutputStream("E:/students.xls");
- wb.write(fout);
- fout.close();
- }
- catch (Exception e)
- {
- e.printStackTrace();
- }
- }
- }
1. 数值类型处理
通过POI取出的数值默认都是double,即使excel单元格中存的是1,取出来的值也是1.0,这就造成了一些问题,如果数据库字段是int,那么就会wrong data type,所以需要对数值类型处理。
- Cell cell = null;// 单元格
- Object inputValue = null;// 单元格值
- if(!isEmpty(cell) && cell.getCellType() == Cell.CELL_TYPE_NUMERIC) {
- long longVal = Math.round(cell.getNumericCellValue());
- if(Double.parseDouble(longVal + ".0") == doubleVal)
- inputValue = longVal;
- else
- inputValue = doubleVal;
- }
这么处理后,单元格中的小数没有变化,如果是整数,也会取到整数。
2. 日期类型处理
很遗憾,POI对单元格日期处理很弱,没有针对的类型,日期类型取出来的也是一个double值,所以同样作为数值类型。
- Cell cell = null;// 单元格
- Object inputValue = null;// 单元格值
- if(!isEmpty(cell) && cell.getCellType() == Cell.CELL_TYPE_NUMERIC) {
- if(DateUtil.isCellDateFormatted(c))// 判断单元格是否属于日期格式
- inputValue = cell.getDateCellValue();//java.util.Date类型
- }
可以判断得到的Date是日期时间、日期还是时间,可以通过cell.getCellStyle().getDataFormat()来判断,这个返回值没有一个常量值来对应,我本机是excel2013,测试结果是日期时间(yyyy-MM-dd HH:mm:ss) - 22,日期(yyyy-MM-dd) - 14,时间(HH:mm:ss) - 21,年月(yyyy-MM) - 17,时分(HH:mm) - 20,月日(MM-dd) - 58,有了这个,可以根据数据库字段类型,处理之后再入库,相当不方便。
另外,如果单元格数据格式是自定义的日期格式,那么通过DateUtil.isCellDateFormatted(cell)判断不出来,而且该单元格还是一个数值单元格,返回一个double值,这里比较2。针对这种方式,有两种解决方案,第一种,重写DateUtil.isCellDateFormatted(cell)方法,开源的都有源码;第二种,cell.getCellStyle().getDataFormatString()来判断,这个方法会返回格式字符串,通过这个字符串去匹配,再处理。
3. 数据有效性
很奇怪,POI能生成数据有效性(下拉列表),却得不到,或者说我没找到方法去得到,蛋疼。
附单元格数据类型:
常量 | 说明 | 取值 |
---|---|---|
Cell.CELL_TYPE_NUMERIC | 数值类型 | cell.getNumericCellValue() 或cell.getDateCellValue() |
Cell.CELL_TYPE_STRING | 字符串类型 | cell.getStringCellValue() 或cell.toString() |
Cell.CELL_TYPE_BOOLEAN | 布尔类型 | cell.getBooleanCellValue() |
Cell.CELL_TYPE_FORMULA | 表达式类型 | cell.getCellFormula() |
Cell.CELL_TYPE_ERROR | 异常类型 不知道何时算异常 |
cell.getErrorCellValue() |
Cell.CELL_TYPE_BLANK | 空,不知道何时算空 | 空就不要取值了吧 |
POI操作Excel时偶尔会出现Cannot get a text value from a numeric cell的异常错误。
异常原因:Excel数据Cell有不同的类型,当我们试图从一个数字类型的Cell读取出一个字符串并写入数据库时,就会出现Cannot get a text value from a numeric cell的异常错误。
此异常常见于类似如下代码中:row.getCell(0).getStringCellValue();
解决办法:先设置Cell的类型,然后就可以把纯数字作为String类型读进来了:
if(row.getCell(0)!=null){
http://blog.csdn.net/huazhangena/article/details/7587731
参考文章 http://www.open-open.com/lib/view/open1429847388213.htmlhttp://webook-java.iteye.com/blog/1699621