Read ini files with Apache Ant
Is there a way to 开发者_StackOverflow社区read properties from an INI file with apache ant? I stumbled across apache-contrib's IniFile but it's sole purpose seems to edit and write INI files - not to simply read them.
If they are "name=value" format with no sections (I'm not sure what Ant would do with sections), you can use this.
<property file="myinifile.ini"/>
精彩评论