Bindy CSV parser uses default encoding
--------------------------------------
Key: CAMEL-4983
URL: https://issues.apache.org/jira/browse/CAMEL-4983
Project: Camel
Issue Type: Bug
Components: camel-bindy
Affects Versions: 2.9.0
Reporter: Thomas Letsch
The bindy csv component uses the default encoding when importing a file.
In Detail:
Class org.apache.camel.dataformat.bindy.csv.BindyCsvDataFormat Line 115:
- InputStreamReader in = new InputStreamReader(inputStream);
+ InputStreamReader in = new InputStreamReader(inputStream,
IOConverter.getCharsetName(exchange));
the marshal method needs that fix probably too. This was already done for the
standard CSV component:
https://issues.apache.org/jira/browse/CAMEL-3483
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira