Reading ini files with Apache Ant

Is there a way to read properties from an INI file with apache ant? I stumbled upon apache-contrib IniFile, but the only goal is to edit and write INI files, not just read them.

+6
apache ant ini
source share
1 answer

If it's a name-value format without partitions (I'm not sure what Ant will do with partitions), you can use this.

<property file="myinifile.ini"/> 
+6
source share

All Articles