You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Pierre-Alban DEWITTE (JIRA)" <ji...@apache.org> on 2013/03/21 22:09:17 UTC

[jira] [Created] (CAMEL-6198) CsvConfig.setDelimiter(Char char) has no effect

Pierre-Alban DEWITTE created CAMEL-6198:
-------------------------------------------

             Summary: CsvConfig.setDelimiter(Char char) has no effect
                 Key: CAMEL-6198
                 URL: https://issues.apache.org/jira/browse/CAMEL-6198
             Project: Camel
          Issue Type: Bug
          Components: camel-core
    Affects Versions: 2.10.4
         Environment: Linux
            Reporter: Pierre-Alban DEWITTE
            Priority: Trivial


With code abode csvConfig.setDelimiter(';') has no effect
CsvDataFormat csv = new CsvDataFormat();
		CSVConfig csvConfig = new CSVConfig();
		csvConfig.setDelimiter(';');
		csvConfig.setFieldHeader(true);
		
		
		from("file://in/?include=.*\\.csv).unmarshal(csv).process(new MyProcessor());

When i add csv.setDelimiter(";"); everything works fine.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira