Skip to content

A convenience library for exporting data in different formats.

License

Notifications You must be signed in to change notification settings

giosil/export-as

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Export-As utilities

A convenience library for exporting data in different formats.

Example

List<List<Object>> data = getTestData();

byte[] xls  = ExportAs.xls(data,  "test");

byte[] xlsx = ExportAs.xlsx(data, "test");

byte[] csv  = ExportAs.csv(data,  "test");

byte[] html = ExportAs.html(data, "test");

byte[] pdf  = ExportAs.pdf(data,  "test");

byte[] json = ExportAs.json(data, "test");

Build

  • git clone https://github.com/giosil/export-as.git
  • mvn clean install

Contributors

About

A convenience library for exporting data in different formats.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages