java生成EXCEL表单简单demo
//下面是实体类 package com.test.model; import java.util.Date; //模板数据实体 public class UserTmpl { private int id; private String name; private Date birthday; private String identity; private String phone; private String address; private String Email; public UserTmpl() { super(); } public UserTmpl(int id, String name, Date birthday, String identity, String phone, String address, String email) { super(); this.id = id; this.name = name; this.birthday = birthday; this.identity = identity; this.phone = phone; this.address = address; Email = email; } public int getId() { return id; } public void setId(int id