我正在使用ant脚本从dbms中选择数据。
<target name="change">
<echo message="${DatabaseUrl}"/>
<sql>
select query
</sql>
<loadfile srcfile="temp.properties" property="result"/>
<echo message="${result}"/>
</target>
这个输出就像
ServerName,HostName,Location
Win@k8,DS,India
Linux,DS1,India
我希望输出像
ServerName=Win@k8
HostName=DS
Location=India
等...
这样我就可以将值存储在变量中以便进一步处理。