This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: unrecognized character in input stream
- From: Tom Tromey <tromey at redhat dot com>
- To: Olivier LF <olivier at zipworld dot com dot au>
- Cc: java at gcc dot gnu dot org
- Date: 13 Jun 2002 08:59:25 -0600
- Subject: Re: unrecognized character in input stream
- References: <20020613134035.GA5550@zipworld.com.au>
- Reply-to: tromey at redhat dot com
>>>>> "Olivier" == Olivier LF <olivier@zipworld.com.au> writes:
Olivier> tournesol:~$ gcj --encoding=UTF-8 -c Test.java
Olivier> Test.java:3: unrecognized character in input stream.
Olivier> /** Hüffihütte */
Olivier> ^
You're telling gcj that your input file is encoded using UTF-8.
However, that isn't the case. It is encoded using ISO-8859-1.
Try using --encoding=ISO-8859-1.
Tom