gpt4 book ai didi

java - Robotium 脚本中的当前日期验证

转载 作者:行者123 更新时间:2023-12-01 13:32:57 27 4
gpt4 key购买 nike

我需要有关 Robotium 脚本的帮助。我的情况类似于“在我的 AUT 中,当前日期可用“2014 年 1 月 30 日”。因此我需要验证其是否为当前日期。

最佳答案

您可以将该字符串解析为日期并将其与今天进行比较,也可以将今天的日期格式化为字符串并检查它与可用日期。下面是一个示例,说明如何使用后一种逻辑来实现它。

String day = "30 january 2014"; // Available Date
DateFormat df = new SimpleDateFormat("dd MMMM yyyy"); // DateFormat matching your available date
if (df.format(new Date()).equalsIgnoreCase(day)) { // check for equality, ignoring the case
// It is today's date if the control comes here.
} else {
// It is not today's date if the control comes here.
}

关于java - Robotium 脚本中的当前日期验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21451222/

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