README
kotlin-csv
Pure Kotlin CSV Reader/Writer.
Design goals
1. Simple interface
easy to setup
use DSL so easy to read
2. Automatic handling of I/O
in Java, we always need to close file. but it's boilerplate code and not friendly for non-JVM user.
provide interfaces which automatically close file without being aware.
3. Multiplatform
Kotlin Multiplatform projects support.
Usage
Download
Gradle
Maven
Examples
CSV Read examples
Simple case
You can read csv file from String, java.io.File or java.io.InputStream object.
No need to do any I/O handling. (No need to call use, close and flush method.)
Read with header
Read as Sequence
Sequence type allows to execute lazily.
It starts to process each rows before reading all row data.
Learn more about the Sequence type on Kotlin's official documentation.
NOTE: readAllAsSequence and readAllWithHeaderAsSequence methods can only be called within the open lambda block. The input stream is closed after the open lambda block.
Read line by line
If you want to handle line-by-line, you can do it by using open method. Use open method and then use readNext method inside nested block to read row.
Read in a Suspending Function
Note: openAsync can be and only be accessed through a coroutine or another suspending function
Customize
When you create CsvReader, you can choose read options:
logger
no-op
Logger instance for logging debug information at runtime.
quoteChar
"
Character used to quote fields.
delimiter
,
Character used as delimiter between each field.
Use "\t" if reading TSV file.
escapeChar
"
Character to escape quote inside field string. Normally, you don't have to change this option. See detail comment on ICsvReaderContext.
skipEmptyLine
false
Whether to skip or error out on empty lines.
autoRenameDuplicateHeaders
false
Whether to auto rename duplicate headers or throw an exception.
skipMissMatchedRow
false
Deprecated. Replace with appropriate values in excessFieldsRowBehaviour and insufficientFieldsRowBehaviour, e.g. both set to IGNORE. Whether to skip an invalid row. If ignoreExcessCols is true, only rows with less than the expected number of columns will be skipped.
excessFieldsRowBehaviour
ERROR
Behaviour to use when a row has more fields (columns) than expected. ERROR (default), IGNORE (skip the row) or TRIM (remove the excess fields at the end of the row to match the expected number of fields).
insufficientFieldsRowBehaviour
ERROR
Behaviour to use when a row has fewer fields (columns) than expected. ERROR (default), IGNORE (skip the row) or EMPTY_STRING (replace missing fields with an empty string).
CSV Write examples
Simple case
You can start writing csv in one line, no need to do any I/O handling (No need to call use, close and flush method.):
You can also write a csv file line by line by open method:
Write in a Suspending Function
Write as String
long-running write (manual control for file close)
If you want to close a file writer manually for performance reasons (e.g. streaming scenario), you can use openAndGetRawWriter and get a raw CsvFileWriter.
DO NOT forget to close the writer!
Customize
When you create a CsvWriter, you can choose write options.
delimiter
,
Character used as delimiter between each fields.
Use "\t" if reading TSV file.
nullCode
(empty string)
Character used when a written field is null value.
lineTerminator
\r
Character used as line terminator.
outputLastLineTerminator
true
Output line break at the end of file or not.
prependBOM
false
Output BOM (Byte Order Mark) at the beginning of file or not.
quote.char
"
Character to quote each fields.
quote.mode
CANONICAL
Quote mode.
- CANONICAL: Not quote normally, but quote special characters (quoteChar, delimiter, line feed). This is the specification of CSV.
- ALL: Quote all fields.
- NON_NUMERIC: Quote non-numeric fields. (ex. 1,"a",2.3)
Links
Documents
Libraries which use kotlin-csv
kotlin-grass: Csv File to Kotlin Data Class Parser.
Miscellaneous
🤝 Contributing
Contributions, issues and feature requests are welcome! If you have questions, ask away in Kotlin Slack's kotlin-csv room.
💻 Development
Show your support
Give a ⭐️ if this project helped you!
📝 License
Copyright © 2024 jsoizo. This project is licensed under Apache 2.0.
This project is inspired ❤️ by scala-csv
This README was generated with ❤️ by readme-md-generator
Acknowledgments
This project was originally created by @doyaaaaaken. The initial work and contributions are greatly appreciated.
Last updated
Was this helpful?