码迷,mamicode.com
首页 > 编程语言 > 详细

poi excel自己主动转换成javabean 支持引用类型属性二级转换

时间:2017-06-06 10:51:00      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:date   功能   引用类型   user   pac   post   tom   shm   water   

近期项目须要使用excel导入功能。导入学生的时候须要指定所在班级,使用excel一次性导入!

将曾经的代码改改支持属性内引用类的转换。

測试对象为User对象,javabean结构:

private String username;
private int id;
private String name;
private Date birthday;
private long height;
private double salary;
private User user;

使用測试代码:

Map<String, String> header = new HashMap<String, String>();
header.put("编号", "id");
header.put("用户名", "username");
header.put("姓名", "name");
header.put("生日", "birthday");
header.put("身高", "height");
header.put("工资", "salary");
header.put("孩子", "user.username");
header.put("孩子名字", "user.name");
header.put("孩子生日", "user.birthday");
ExcelImport export = new ExcelImport(header);
// export.init(new File("src/user.xls"));
export.init(new FileInputStream(new File("src/user.xls")));
List<User> users = export.bindToModels(User.class, true);
for(User u:users){
System.out.println(u);
}

转换结果技术分享

excel结构:

技术分享

代码下载地址:

http://download.csdn.net/detail/believer123/7317397



poi excel自己主动转换成javabean 支持引用类型属性二级转换

标签:date   功能   引用类型   user   pac   post   tom   shm   water   

原文地址:http://www.cnblogs.com/gavanwanggw/p/6949770.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!