Ant svn URL的中文乱码问题

Ant svn URL的中文乱码问题

在使用Ant的svn task时,如果srcUrl中包含中文如
<property name="svn.url" value="http://192.168.2.247/svn/中文/中文/trunk/project"/>
<svn javahl="true" username="${svn.username}" password="${svn.password}" failonerror="true">
<export srcUrl="${svn.url}" destPath="${destPath}" revision="${svn.reversion}"/>
</svn>
svn task将不能正确执行
需要在xml头中指定编码为UTF-8
<?xml version="1.0" encoding="UTF-8"?>

若使用的properties配置文件中含有中文,应当用java JDK的native2ascii工具做转换
可以使用ant的exec task调用native2ascii,如下:
<property name="native_props" value="pgm.properties"/>
<property name="ascii_props" value="pgm_ascii.properties"/>
<target name="native2ascii">
<delete file="${ascii_props}"/>
<exec executable="native2ascii">
<arg value="${native_props}"/>
<arg value="${ascii_props}"/>
</exec>
<property file="${ascii_props}"/>
</target>

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