I am getting error as:
error: unmappable character for encoding UTF8 [javac] // url encoded is '�' which will get properly url encoded.
I am getting error as:
error: unmappable character for encoding UTF8 [javac] // url encoded is '�' which will get properly url encoded.
Modify ant to add this
<?xml version="1.0" encoding="utf-8" ?>
<project name="test" default="compile">
<target name="compile">
<javac srcdir="src" destdir="classes"
encoding="cp1252" debug="true" />
</target>
</project>
Read this for more details: http://www.weblogism.com/item/288/unmappable-character-for-encoding-utf8