Parsing subversion metainfo in order to get latest revision number IMHO is not a good idea.
Actually, there is another standard way of getting revision number. You could use svn:keywords in order to get current revision number in your files after each commit. There is $Revision$ property for revision substitution. You just need to put following string into the file and place this file under version control:
$Revision$
If you need to use revision property in ant, I would recommend putting following content into version.properties file:
revision=$Revision$
Then include in into the build.xml with the statement:
<property file="build.properties"/>
And then you will be able to use revision number in your build script:
<echo message="Deploying revision ${revision}" />
Please also note that you will need to explicitly enable svn:keywords using subversion properties in order to get $Revision$ substituted in your file with actual value. If you use version.properties for getting revision number value, you will need to run following command:
svn propset svn:keywords Revision version.properties
Not sure that will work for your case, but that's the approach I use most often in my projects if I want to use revision number during the build process. This approach is definitely better than getting revision number from the working copy metainfo.