0

I am getting error as:

error: unmappable character for encoding UTF8 [javac] // url encoded is '�' which will get properly url encoded.

1 Answers1

1

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

Vrashabh Irde
  • 14,129
  • 6
  • 51
  • 103