CSVReader reader = new CSVReader(new StringReader((String) src));
String[] nextLine;
try {
while ((nextLine = reader.readNext()) != null) {
Map<String,String> product = new HashMap<String,String>();
product.put("name",nextLine[0]);
product.put("acv",nextLine[1]);
product.put("cost",nextLine[2]);
product.put("description",nextLine[3]);