Skip to content

Release v1.0.0 - able to lazily parse files to text fields or maps of column to text

Compare
Choose a tag to compare
@mashimom mashimom released this 31 Jan 23:55

This is the first release that has the basic features.

  • this library can parse CSV files lazily, where only the current reading line stays in memory
  • it can parse CSV to:
    • Stream,
    • Stream<Map<?,String>> without row numbering
    • Stream<Map<?,String>> with automatic row numbering as a column
  • it accepts only character-based line ending and field separator
  • it consumes String, InputStream, File; the last two being the main usage
  • the integration tests should guide for usage examples