all day I\'ve been searching how to resolve this probem and nothing... I want to write function, which convert CSV file to collection of lists (of strings). Here is this fun
You create your own Preference.
CsvPreference excelPreference = new CsvPreference.Builder('\'', ',', "\n").build();
CsvListReader parser = new CsvListReader(Files.newBufferedReader(pathToFile , StandardCharsets.UTF_8), excelPreference);
After that, it will output as expected. In this example, you will strip the single quote if you have that in your csv file and keep the double quote untouched.