- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://amateras.sourceforge.jp/cgi-bin/fswiki_en/wiki.cgi?page=XLSBeans
软件介绍
XLSBeans是一个将Excel表映射成Java对象的类库。
示例代码:
@Sheet(name="Users")
public class UserList {
@LabelledCell(label="Title", type=LabelledCellType.Right)
public String title;
@HorizontalRecords(tableLabel="User list", recordClass=User.class)
public List<User> users;
}
