Hi!

I'm reading CSV encoded in UTF-16:

Reader reader  = new BufferedReader(new InputStreamReader(new
FileInputStream(source), "UTF-16"));
//Ignore 2 bytes of format data
reader.read();
CSVParser parser = format.parse(reader)

The CSV, with record separators 0D0A,  is consumed correctly except I
get thie above error at the end of the parse

The file ends with 0D0A

Does anyone know what the problem may be here, please?

Thanks

Robert

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org

Reply via email to