Windmill icon indicating copy to clipboard operation
Windmill copied to clipboard

A library to parse or write Excel and CSV files through a fluent API

Results 4 Windmill issues
Sort by recently updated
recently updated
newest added

POI 3.17 is impacted by [CVE-2019-12415](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12415). Need to upgrade to 4.1.1 or newer to resolve.

Hi, Thanks for the great library! Are there any plans to open it for contributions? I have some ideas in the following areas: 1. Streaming write of data out to...

Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.4.7 to 1.4.12. Commits 88abf59 prepare release 1.4.12 2cd8cab cater for array size marked with -1 9c782b4 prevent DOS attacks using on malicious serialized input f6d690d further...

dependencies

`List test = List.of(new MyObject().setCommentary("\"test\";").setStatus("status")); Windmill .export(test) .withHeaderMapping(new ExportHeaderMapping() .add("comment", MyObject::getCommentary) .add("status", MyObject::getStatus) ) .asCsv(ExportCsvConfig.builder().separator(';').quoteChar('"').escapeChar('\\').charset(BomCharset.UTF_8).build()) .writeTo(outputStream); }` The expected result is ["test";] in the first cell and [status] in the...