How to serialize object to CSV file?

前端 未结 8 1284
执念已碎
执念已碎 2020-11-27 17:14

I want to write a Object into CSV file. For XML we have XStream like this
So if i want to convert object to CSV do we have any such library ?

EDIT: I w

8条回答
  •  南方客
    南方客 (楼主)
    2020-11-27 18:17

    Though its very late reply, I have faced this problem of exporting java entites to CSV, EXCEL etc in various projects, Where we need to provide export feature on UI.

    I have created my own light weight framework. It works with any Java Beans, You just need to add annotations on fields you want to export to CSV, Excel etc.

    Link: https://github.com/abhisoni96/dev-tools

提交回复
热议问题