simplecsv icon indicating copy to clipboard operation
simplecsv copied to clipboard

Simple Java CSV reading and writing library using Java annotations

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

-added Instant converter -upgrading to java8

We encourage you to apply Structural Patterns in your program, specifically in the converter package. You could try to aplly Facade and/or Factory Method to your test converters.

I'm creating a new csv document in device's Downloads folder with below usage: ``` class ExportRecipientsContract(private val context: Context, private val recipients: List) : ActivityResultContract() { override fun createIntent(context: Context,...

I have a class: ``` public class Person { @CsvColumn(columnName = "name") private String name; @CsvColumn(columnName = "phones") private List phones; } ``` where phones could have 0...* elements; I'd...