Hi, i am using javacsv.jar file for javacsvReader class. But, it does not support UTF-8 files.I think the problem is with this code in CsvReader.java:
public CsvReader(String paramString, char paramChar)
throws FileNotFoundException
{
this(paramString, paramChar, Charset.forName("ISO-8859-1"));
}
Here ISO-8859-1 is written.So, donot know whether it supports UTF-8,but in forums it is written that it supports UTF-8.Can anyone please help regarding this?