ant编译时中文乱码

在使用ant编译项目的时候经常会遇到“警告:编码 GBK 的不可映射字符”这样的信息,这个主要是因为我们在写代码的时候加入了一些中文注释,而导致编译时候出现的问题。要处理这个问题,仅仅只需要在build.xml文件中的调用javac的地方加入encoding的参数。

<target name="compile" depends="init">
        <javac encoding="utf-8" destdir="${compile.path}" srcdir="${src.path}" classpathref="project.class.path" debug="on"
               source="1.5"/>
    </target>

你可能感兴趣的:(ant编译)