compiling with javac ant task giving me errors that doesn't exists.. [javac] D:\mySrc\xx.java:1: illegal character: \65279 [javac] package com.x.y;
and there is no problem with the class xx.java
here is my compile target:
<javac srcdir="${src}/src" destdir="${bin}" encoding = "utf-8" classpathref="classpath" debug="true" debuglevel="lines,vars,source" deprecation="off" />
<copy todir="${bin}" overwrite="no">
<fileset dir="${src}/src" excludes="**/*.java"/>
</copy>