I import a Java project from Windows platform to Ubuntu.
My Ubuntu is 10.10, Gnome environment: My LANGUAGE is set to en_US:en
My terminal's character encoding is: Unicode (UTF-8)
My IDE is eclipse and text file encoding is: GBK.
In source file, there are some Chinese constant character.
The project build successful on Windows with ant,
but on Ubuntu, I get compile error:
illegal character: \65533
I don't want to use \uxxxx format as the file is already there,
And I've tried the -encoding option for javac, but still can't compile.
encoding UTF-8to compiler options. – Nishan Mar 10 '11 at 11:00char ch = '国';System.out.println(ch);. If I don't use-encoding, then I get error message:warning: unmappable character for encoding UTF8, but when I use-encoding GBK, both javac and java is happy. – OnTheEasiestWay Mar 10 '11 at 12:21