Super CSV 1.30 (Default branch) |
|
|
Super CSV is a CSV package for the Java 5+ platform. It operates on streams rather than file names, so you can read and write files of any encoding from any kind of source. It operates on maps and POJO beans, so you don't have to convert to or from String arrays. It has a powerful notion of a cellprocessor which enables you to regard columns in your CSV files as real types such as numbers and dates rather than as strings. Additionally, the processors can also act as a constraint mechanism, enabling you to naturally specify constraints on your data.
License: The Apache License 2.0
Changes:
BeanReader now accepts interface types to read into. The reader will create an implementation on-the-fly of the interface and use this. The ITokenizer interface has become public, making 3rd party extensions better integrated. The exception class now contains the file context in which it was thrown. An overloaded read() has been removed entirely. The cell processor ParseBigDecimal has been added. A new exception SuperCSVReflectionException replaces annoying Java checked exceptions. More methods now use the "..." notation for easy use.
|