• 大小: 8.12MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-12-26
  • 语言: 其他
  • 标签: poi  

资源简介

poi导出导入封装(使用注解建立实体与excel映射关系+反射设置实体属性值), poi导出导入封装(使用注解建立实体与excel映射关系+反射设置实体属性值) poi导出导入封装(使用注解建立实体与excel映射关系+反射设置实体属性值) poi导出导入封装(使用注解建立实体与excel映射关系+反射设置实体属性值) poi导出导入封装(使用注解建立实体与excel映射关系+反射设置实体属性值) poi导出导入封装(使用注解建立实体与excel映射关系+反射设置实体属性值)

资源截图

代码片段和文件信息

package utils;



public class ExcelEntity {

public ExcelEntity() {
}

public ExcelEntity(int id String name) {
this.id = id;
this.name = name;
}
//描述改属性在excel中第0列,列名为  序号
@MyAnnotation(columnIndex=0columnName=“序号“)
private int id;

//描述改属性在excel中第1列,列宁为 名字
@MyAnnotation(columnIndex=1columnName=“名字“)
private String name;


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;
}

@Override
public String toString() {
return “ExcelEntity [id=“ + id + “ name=“ + name + “]“;
}




}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-08-01 14:42  poi\
     文件         551  2018-08-01 14:42  poi\.classpath
     文件         379  2018-08-01 14:42  poi\.project
     目录           0  2018-08-01 14:42  poi\.settings\
     文件         598  2018-08-01 14:42  poi\.settings\org.eclipse.jdt.core.prefs
     目录           0  2018-08-01 14:42  poi\bin\
     目录           0  2018-08-01 14:42  poi\bin\utils\
     文件        1298  2018-08-01 14:42  poi\bin\utils\ExcelEntity.class
     文件       10436  2018-08-01 14:42  poi\bin\utils\GenerateExcel.class
     文件         409  2018-08-01 14:42  poi\bin\utils\MyAnnotation.class
     目录           0  2018-08-01 14:42  poi\lib\
     文件     2701171  2018-08-01 14:42  poi\lib\poi-3.17.jar
     文件       31218  2018-08-01 14:42  poi\lib\poi-excelant-3.17.jar
     文件     1479023  2018-08-01 14:42  poi\lib\poi-ooxml-3.17.jar
     文件     5924600  2018-08-01 14:42  poi\lib\poi-ooxml-schemas-3.17.jar
     目录           0  2018-08-01 14:42  poi\src\
     目录           0  2018-08-01 14:42  poi\src\utils\
     文件         766  2018-08-01 14:42  poi\src\utils\ExcelEntity.java
     文件        9063  2018-08-01 14:42  poi\src\utils\GenerateExcel.java
     文件         404  2018-08-01 14:42  poi\src\utils\MyAnnotation.java

评论

共有 条评论