我需要有关机器人脚本的帮助。我的情况就像“在我的AUT现在日期可用”2014年1月30日“。所以我需要验证它的当前日期。
答案 0 :(得分:1)
您可以将String
解析为Date
并将其与今天进行比较,也可以将今天的日期格式化为String
并使用可用日期进行检查。以下是使用后一种逻辑如何实现它的示例。
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.
}