在Ant的javac中指定源文件编码方式,以避免 警告 编码 GBK 的不可映射字符 的错误

               

转载自:http://blog.csdn.net/dusj/article/details/4956765

 <target name="compile" depends="prepare">  <echo message="5.compile" />  <javac fork="true" target="1.6" srcdir="${src}" destdir="${build}" debug="true">   <!--给编译器指定编码,防止出现:"警告: 编码 GBK 的不可映射字符"-->   <compilerarg line="-encoding UTF-8 " />   <classpath refid="external.jars.path" />  </javac>  <echo message="compile finished!" /> </target>



           

猜你喜欢

转载自blog.csdn.net/qq_44894420/article/details/89353742