- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 ant 来构建针对各种条件的结构。我想根据他们所属的大陆来为地球和大陆上的所有国家行事
<if>
<or>
<equals arg1="${country}" arg2="US" />
<equals arg1="${country}" arg2="CA" />
</or>
<then>
<!-- do stuff -->
</then>
<elseif>
<or>
<equals arg1="${country}" arg2="DE" />
<equals arg1="${country}" arg2="AT" />
<equals arg1="${country}" arg2="FR" />
<equals arg1="${country}" arg2="NL" />
<equals arg1="${country}" arg2="SE" />
<equals arg1="${country}" arg2="ES" />
..
</or>
<then>
<!-- do stuff -->
</then>
</elseif>
<elseif>
<or>
<equals arg1="${country}" arg2="JP" />
<equals arg1="${country}" arg2="KR" />
<equals arg1="${country}" arg2="AU" />
<equals arg1="${country}" arg2="SA" />
<equals arg1="${country}" arg2="PL" />
<equals arg1="${country}" arg2="CN" />
..
</or>
<then>
<!-- do stuff -->
</then>
</elseif>
</if>
现在,如果您可以想象有超过 200 个国家/地区 + 我想对语言使用 NOT、AND 和 OR 条件,这将导致非常大的文件,以后很难修改和维护。有没有办法通过将所有国家/地区排序为文件中的数组或列表并让 ant 从此文件中读取来最小化代码。外部文件:
North_America=["US","CA"]
Europe=["DE","GB","FR",...]
Asia=["JP","PL","CN",..]
AFRICA=[..]
South_America[..]
那么使用ant就会非常简单了:
<if>
<equals arg1="${country}" arg2="${North_America}" />
<then>
<!-- do stuff -->
</then>
<elseif>
<equals arg1="${country}" arg2="${Asia}" />
<then>
<!-- do stuff -->
</then>
</elseif>
<elseif>
<equals arg1="${country}" arg2="${Africa}" />
<then>
<!-- do stuff -->
</then>
</elseif>
..
</if>
我的问题不是如何在ant中加载或读取属性文件,而是如何从数组或列表中读取值
<equals arg1="${country}" arg2="${Asia}" />
其中“Asia”是数组(或列表),问题是如果第一个参数等于该数组的任何值,是否可以在 ant 中实现这样的 IF 条件?或者即使有更好的方法来完成这项任务。
最佳答案
Ant 属性始终是字符串,因此无法真正存储或读取数组(或任何其他类型的对象)。
幸运的是,对于您的问题,国家/地区缩写始终以唯一的 2 个字母字符串的形式出现,因此只需从存储为一个长字符串的逗号分隔列表中读取它们即可轻松可靠地完成。
如果可能的话,我建议完全放弃 ant-contrib。有时您的脚本需要 for
循环,并且确实没有其他方法可以解决它,但如果您只是处理一堆条件,那么最好使用 native Ant。如果您好奇的话,我可以进一步详细说明。
关于国家/地区信息是否应该分组到构建脚本或属性文件中的问题,这只是一个选择问题。我个人更喜欢将数据存储在属性文件中,只留下脚本本身的逻辑。
continents.properties
continent_southAmerica=AR,BR
continent_NorthAmerica=US,CA
continent_Asia=PL,SY,JP,SA,CN
continent_Africa=EG,TU,SU,MR,Ly
continent_Europe=FR,Nl,DE,DK,GB
build.xml
<fail message="Please specify a country. (-Dcountry=US)">
<condition>
<not>
<isset property="country" />
</not>
</condition>
</fail>
<property file="continents.properties" />
<target
name="build"
depends="
north-america-stuff,
south-america-stuff,
asia-stuff,
africa-stuff,
europe-stuff"
>
<echo message="Build complete for ${country}, ${continent}." />
</target>
<target name="init-continent">
<condition property="continent.is.north.america">
<contains string="${continent_NorthAmerica}" substring="${country}" />
</condition>
<condition property="continent.is.south.america">
<contains string="${continent_SouthAmerica}" substring="${country}" />
</condition>
<condition property="continent.is.asia">
<contains string="${continent_Asia}" substring="${country}" />
</condition>
<condition property="continent.is.africa">
<contains string="${continent_Africa}" substring="${country}" />
</condition>
<condition property="continent.is.europe">
<contains string="${continent_Europe}" substring="${country}" />
</condition>
</target>
<target name="north-america-stuff" if="continent.is.north.america" depends="init-continent">
<property name="continent" value="North America" />
<echo message="Continent: ${continent}" />
</target>
<target name="south-america-stuff" if="continent.is.south.america" depends="init-continent">
<property name="continent" value="South America" />
<echo message="Continent: ${continent}" />
</target>
<target name="asia-stuff" if="continent.is.asia" depends="init-continent">
<property name="continent" value="Asia" />
<echo message="Continent: ${continent}" />
</target>
<target name="africa-stuff" if="continent.is.africa" depends="init-continent">
<property name="continent" value="Africa" />
<echo message="Continent: ${continent}" />
</target>
<target name="europe-stuff" if="continent.is.europe" depends="init-continent">
<property name="continent" value="Europe" />
<echo message="Continent: ${continent}" />
</target>
关于java - Ant - 如果条件 - 从外部数组/文件读取并将其与第一个参数进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48803212/
我正在尝试创建一个包含 int[][] 项的数组 即 int version0Indexes[][4] = { {1,2,3,4}, {5,6,7,8} }; int version1Indexes[
我有一个整数数组: private int array[]; 如果我还有一个名为 add 的方法,那么以下有什么区别: public void add(int value) { array[va
当您尝试在 JavaScript 中将一个数组添加到另一个数组时,它会将其转换为一个字符串。通常,当以另一种语言执行此操作时,列表会合并。 JavaScript [1, 2] + [3, 4] = "
根据我正在阅读的教程,如果您想创建一个包含 5 列和 3 行的表格来表示这样的数据... 45 4 34 99 56 3 23 99 43 2 1 1 0 43 67 ...它说你可以使用下
我通常使用 python 编写脚本/程序,但最近开始使用 JavaScript 进行编程,并且在使用数组时遇到了一些问题。 在 python 中,当我创建一个数组并使用 for x in y 时,我得
我有一个这样的数组: temp = [ 'data1', ['data1_a','data1_b'], ['data2_a','data2_b','data2_c'] ]; // 我想使用 toStr
rent_property (table name) id fullName propertyName 1 A House Name1 2 B
这个问题在这里已经有了答案: 关闭13年前。 Possible Duplicate: In C arrays why is this true? a[5] == 5[a] array[index] 和
使用 Excel 2013。经过多年的寻找和适应,我的第一篇文章。 我正在尝试将当前 App 用户(即“John Smith”)与他的电子邮件地址“jsmith@work.com”进行匹配。 使用两个
当仅在一个边距上操作时,apply 似乎不会重新组装 3D 数组。考虑: arr 1),但对我来说仍然很奇怪,如果一个函数返回一个具有尺寸的对象,那么它们基本上会被忽略。 最佳答案 这是一个不太理
我有一个包含 GPS 坐标的 MySQL 数据库。这是我检索坐标的部分 PHP 代码; $sql = "SELECT lat, lon FROM gps_data"; $stmt=$db->query
我需要找到一种方法来执行这个操作,我有一个形状数组 [批量大小, 150, 1] 代表 batch_size 整数序列,每个序列有 150 个元素长,但在每个序列中都有很多添加的零,以使所有序列具有相
我必须通过 url 中的 json 获取文本。 层次结构如下: 对象>数组>对象>数组>对象。 我想用这段代码获取文本。但是我收到错误 :org.json.JSONException: No valu
enter code here- (void)viewDidLoad { NSMutableArray *imageViewArray= [[NSMutableArray alloc] init];
知道如何对二维字符串数组执行修剪操作,例如使用 Java 流 API 进行 3x3 并将其收集回相同维度的 3x3 数组? 重点是避免使用显式的 for 循环。 当前的解决方案只是简单地执行一个 fo
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有来自 ASP.NET Web 服务的以下 XML 输出: 1710 1711 1712 1713
如果我有一个对象todo作为您状态的一部分,并且该对象包含数组列表,则列表内部有对象,在这些对象内部还有另一个数组listItems。如何更新数组 listItems 中 id 为“poi098”的对
我想将最大长度为 8 的 bool 数组打包成一个字节,通过网络发送它,然后将其解压回 bool 数组。已经在这里尝试了一些解决方案,但没有用。我正在使用单声道。 我制作了 BitArray,然后尝试
我们的数据库中有这个字段指示一周中的每一天的真/假标志,如下所示:'1111110' 我需要将此值转换为 boolean 数组。 为此,我编写了以下代码: char[] freqs = weekday
我是一名优秀的程序员,十分优秀!