Ssio 简单的电子表格 I/O开源项目

我要开发同款
匿名用户2020年09月07日
39阅读
开发技术Java
所属分类应用工具
授权协议Apache

作品详情

Ssio 是一个简单的电子表格I/O。

基本功能

把Javabeans存入Excel/CSV, 或者从Excel/CSV中解析出Javabean

特性

通过Annotation把JavabeanProperty映射到列支持日期格式支持复杂类型支持扩展以支持Excel/CSV之外的文件类型其它

代码示例

Beandefinition

publicclassPlayer{@SsColumn(index=0,name="Id")privatelongid;@SsColumn(index=1)//thecolumnnamewillbedecidedas"BirthCountry"privateStringbirthCountry;@SsColumn(index=2,typeHandler=FullNameTypeHandler.class)//complexproptypeprivateFullNamefullName;@SsColumn(index=3)//Theenum'sname()willbesaved.Otherwise,useatypeHandlerprivateSportTypesportType;@SsColumn(index=4,format="yyyy/MM/dd")//dateformatprivateLocalDatebirthDate;@SsColumn(index=5,typeHandler=TimestampAsMillisHandler.class)//ifyouprefersavingtimestampasnumberprivateLocalDateTimecreatedWhen;...}Save

SaveParam<Player>saveParam=//Excel-likefile.ForCSV,use"newCsvSaveParamBuilder()"newOfficeSaveParamBuilder<Player>().setBeanClass(Player.class).setBeans(players).setOutputTarget(outputStream).build();//GototheSsioManagerFactory.javatoseeIoCoptionsSsioManagerssioManager=SsioManagerFactory.newInstance();SaveResultsaveResult=ssioManager.save(saveParam);//saveResult.getDatumErrors()Parse

//Excel-likefile.ForCSV,use"newCsvParseParamBuilder()"ParseParam<Player>parseParam=newOfficeParseParamBuilder().setBeanClass(Player.class).setSpreadsheetInput(inputStream).build();ParseResult<Player>parseResult=ssioManager.parse(parseParam);List<Player>parsedPlayers=parseResult.getBeans();//parseResult.getCellErrors();
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论