Hi all, I have Ant 1.7.0 running on a GERMAN Windows XP. The thing has also filenames with UMLAUTS in the name. Now, I can't get even the below minimal example to correctly print the umlauts, regardless of the encoding I specify in the XML (which I think applies only to the XML parser anyway). What could I tell Ant so it works with those umlauts in its properties? Thank you very much in advance... M
<?xml version="1.0" encoding="iso-8859-1" ?> <project basedir="." default="blah" name="my task"> <taskdef resource="net/sf/antcontrib/antcontrib.properties" /> <property environment="env" /> <property name="mepath" value="." /> <target name="blah" > <exec executable="cmd" outputproperty="dirList" dir="${mepath}"> <arg line="/c dir" /> </exec> <echo message="${dirList}" /> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org