在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>



posted on 2012-03-22 02:49  yang3wei  阅读(512)  评论(0编辑  收藏  举报