I just checked the camel maven pom, it already unify the encoding of the with
the below properties
UTF-8
But it the change could avoid some complains from IDE which doesn't use UTF-8
encoding by default.
--
Willem Jiang
Red Hat, Inc.
FuseSource is now part of Red Hat
Web: http://www.fusesou
Sorry my bad.
Just replace
private String payload = "æøå ©";
with
// danish letter ae, oe, aa space and copyright
private final String payload = "\u00e6\u00f8\u00e5 \u00a9";
in
org.apache.camel.component.file.remote.FtpProducerFileWithCharsetTest
and
org.apache.camel.component.file.re
Hi Willem
When you have foreign chars in source code, then you should unicode
escape them with \u.
Otherwise the code may not compile all over the world. eg the source
code should just be ASCII chars.
On Wed, Dec 19, 2012 at 4:11 PM, wrote:
> private final String payload = "æøå ©";
I just added a note to the Camel 2.11 release note.
--
Willem Jiang
Red Hat, Inc.
FuseSource is now part of Red Hat
Web: http://www.fusesource.com | http://www.redhat.com
Blog: http://willemjiang.blogspot.com (http://willemjiang.blogspot.com/)
(English)
http://jnn.iteye.com (http:/
Hi Willem
We should add a note to release notes in Camel 2.11 that there is a
change in camel-bindy that is not backwards compatible.
On Mon, Dec 17, 2012 at 10:52 AM, wrote:
> Author: ningjiang
> Date: Mon Dec 17 09:52:45 2012
> New Revision: 1422820
>
> URL: http://svn.apache.org/viewvc?re