Normally the header blurs into the background, the exception to this rule is the first time a do a build on a new Ubuntu system and I see the following error:
[javac] /src/com/yourcorp/HelloWorld.java:8: unmappable character for encoding ASCII [jacac] /* ?? Copyright Yourcorp 2011
The Java compiler is expecting ASCII characters rather than ISO 8859-1. To resolve this error I do the following:
- Edit /var/lib/locales/supported.d/local and add:
en_AU ISO-8859-1 en_US ISO-8859-1
- Open a terminal and run:
$ sudo dpkg-reconfigure locales
- Edit /etc/environment and add:
LANG="EN_US"
- Reboot.
0 comments:
Post a Comment