When i parsed my CSV file this error is generated.My CSV file has the font type of Windows-1252/WinLatin 1. So i set the this as character set at the time of parsing. How can i solve this problem. My code is :
reader = new CSVReader(new InputStreamReader(new FileInputStream(
new File(directory)),
Charset.forName("Windows-1252/WinLatin 1")), Configuration.CSV_SEPERATOR);
Windows-1252should be the same charset and recognised. Programatically - split by a slash if not found otherwise. – Jan Dvorak Nov 20 '12 at 13:18windows-1252instead ofWindows-1252? – jlordo Nov 20 '12 at 13:20