// Create the printer
CSVPrint csvPrint = null;
if("UNIX".equals(style)) {
csvPrint = new CSVPrinter(new OutputStreamWriter(new FileOutputStream(csvFile), "UTF-8"), '#', quoteCharacter, seperator, false, true);
} else if("EXCEL".equals(style)) {
csvPrint = new ExcelCSVPrinter(new OutputStreamWriter(new FileOutputStream(csvFile), "UTF-8"), quoteCharacter, seperator, false, true);
}
nameCsvPrintMap.put(entry.getParameterMap().get(NAME), csvPrint);
// If this flag is set add the first
if (Boolean.valueOf(FilterUtils.getNullSafe(entry.getParameterMap().get(ADD_FIELD_NAMES_TO_FIRST_LINE), "false"))) {