java文件编码格式转换(ant)

转换方法:ant

build.xml 

<project name="encoding" default="build">  
    <target name="build">      
      <copy todir="./output" outputencoding="utf-8">  
        <fileset dir=".">  
          <include name="**/*.java"/>  
        </fileset>  
      </copy>  
    </target>  
</project> 

 使用方法:

  1. 把需要转码的目录复制到一个tmp目录
  2. 把build.xml文件复制到tmp目录下
  3. 运行ant
  4. 转码后文件就在output目录下,复制即可

你可能感兴趣的:(java,xml,ant)