gpt4 book ai didi

ant - 如何在 Ant 的列表中存储属性?

转载 作者:行者123 更新时间:2023-12-04 07:05:30 25 4
gpt4 key购买 nike

我想将从 Java 类型属性文件中读取的属性存储在列表中。有什么办法可以在 Ant 中做到这一点吗?

最佳答案

属性是映射而不是列表。您可以使用 property task 从文件中读取一组属性。 .

例如:

<property file="${dir}/external.properties"/>

This property file has the format as defined by the file used in the class java.util.Properties, with the same rules about how non-ISO8859-1 characters must be escaped.



读取属性文件时,它允许扩展文件中的属性。一旦文件被读取,它们就可以正常访问。因此,如果 external.properties 包含:
test.dir=/usr/test
test.file=foo
test.target=${test.dir}/${test.file}/

你可以在你的任务中直接引用 test.target :
<!-- Will create the directory structure /usr/test/foo -->
<mkdir dir="${test.target}"/>

关于ant - 如何在 Ant 的列表中存储属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1164967/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com