CSVObjects
A Java library for parsing and unmarshalling CSV files
CSVObjects is a Java library for parsing and unmarshalling comma-separated values into your own JavaBean classes. It keeps record parsing separate from application code: describe the relationship between columns and bean properties once, then iterate over mapped objects.
Mappings live in a declarative csv-mapping.xml file. They can model nested beans, skip a CSV header, and apply reusable field formatters before values reach bean setters. The parser is read-only and implements Iterable<Object> and AutoCloseable.
CSVObjects requires Java 17 or newer, uses Apache Commons CSV, and is distributed under the GNU GPL version 2 or later