• 大小: 1.63MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-30
  • 语言: 其他
  • 标签: poi  生成  excel  

资源简介

poi生成excel及合并单元格示例,详见文章http://blog.csdn.net/geloin/article/details/17219885

资源截图

代码片段和文件信息

/**
 * 
 */
package com.geloin.poi.bean;

import java.util.Date;

/**
 * @author Geloin
 * 
 */
public class Person {

/**
 * 姓名
 */
private String name;

/**
 * 年龄
 */
private Integer age;

/**
 * 生日
 */
private Date birthday;

/**
 * 是否学生
 */
private boolean isStudent;

/**
 * 身高
 */
private double height;

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public Integer getAge() {
return age;
}

public void setAge(Integer age) {
this.age = age;
}

public Date getBirthday() {
return birthday;
}

public void setBirthday(Date birthday) {
this.birthday = birthday;
}

public boolean isStudent() {
return isStudent;
}

public void setStudent(boolean isStudent) {
this.isStudent = isStudent;
}

public double getHeight() {
return height;
}

public void setHeight(double height) {
this.height = height;
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-10-22 10:47  gelointest\
     文件         418  2013-12-09 10:27  gelointest\.classpath
     文件         386  2013-10-24 18:54  gelointest\.project
     目录           0  2013-10-22 10:46  gelointest\.settings\
     文件         598  2013-10-22 10:46  gelointest\.settings\org.eclipse.jdt.core.prefs
     目录           0  2013-12-09 10:27  gelointest\bin\
     目录           0  2013-12-09 10:27  gelointest\bin\com\
     目录           0  2013-12-09 10:27  gelointest\bin\com\geloin\
     目录           0  2013-12-09 10:27  gelointest\bin\com\geloin\poi\
     目录           0  2013-12-09 10:33  gelointest\bin\com\geloin\poi\bean\
     文件        1441  2013-12-09 10:35  gelointest\bin\com\geloin\poi\bean\Person.class
     目录           0  2013-12-09 10:27  gelointest\bin\com\geloin\poi\main\
     文件        5141  2013-12-09 11:07  gelointest\bin\com\geloin\poi\main\PoiTest.class
     目录           0  2013-12-09 10:27  gelointest\lib\
     文件     1869113  2013-12-03 10:55  gelointest\lib\poi-3.9-20121203.jar
     目录           0  2013-10-22 10:49  gelointest\src\
     目录           0  2013-12-09 11:29  gelointest\src\config\
     目录           0  2013-12-09 10:18  gelointest\src\java\
     目录           0  2013-12-09 10:18  gelointest\src\java\com\
     目录           0  2013-12-09 10:25  gelointest\src\java\com\geloin\
     目录           0  2013-12-09 10:26  gelointest\src\java\com\geloin\poi\
     目录           0  2013-12-09 10:33  gelointest\src\java\com\geloin\poi\bean\
     文件        1021  2013-12-09 10:35  gelointest\src\java\com\geloin\poi\bean\Person.java
     目录           0  2013-12-09 10:26  gelointest\src\java\com\geloin\poi\main\
     文件        4474  2013-12-09 11:07  gelointest\src\java\com\geloin\poi\main\PoiTest.java

评论

共有 条评论