gpt4 book ai didi

blackberry - 如何从当前日期和给定日期查找到期日期

转载 作者:行者123 更新时间:2023-12-01 00:27:52 24 4
gpt4 key购买 nike

我正在开发有 15 天免费订阅的应用程序,然后它会向用户提供到期消息。我在登录时得到了到期日期(yyyy-MM-dd 格式),必须检查当前日期。

我尝试过使用两个日期对象,第一个对象具有当前日期,第二个对象具有到期日期。但是只有当两个日期与 DateTimeUtilities.isSameDate(date1, date2); 函数相同时我才会得到 true,但它只在两个日期相同时返回 true。

请任何人帮助我解决我的问题。

最佳答案

您可以通过以下方式找到您的答案

SimpleDateFormat  formatter = new SimpleDateFormat("yyyy-MM-dd");//Your format type
Date todayDate = new Date(HttpDateParser.parse(formatter.formatLocal(System.currentTimeMillis())));//It converts system date in your given format & store in todayDate object
Date expiryDate = new Date(HttpDateParser.parse(expiryDateString));//It Store your expiry date in your expiryDate format
Calendar cal1 = Calendar.getInstance();
Calendar cal2 = Calendar.getInstance();
cal1.setTime(todayDate);
cal2.setTime(expiryDate);

if(cal1.before(cal2))
{
// Current date is less than your Expiry date
}
else
{
// Current date is equals and greater your Expiry date
}

关于blackberry - 如何从当前日期和给定日期查找到期日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8709636/

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