gpt4 book ai didi

java - 日期 "DAY"自动递增 1

转载 作者:行者123 更新时间:2023-11-30 03:47:20 26 4
gpt4 key购买 nike

如何使我的日期“DAY”在每次获取日期值时仅自动递增 1。例如我当前的到期日期是20141031,增量后它将更改为20141101。

SimpleDateFormat timestampFormat  = new SimpleDateFormat("yyyyMMdd");
SimpleDateFormat timestampFormat2 = new SimpleDateFormat("dd-MM-yyyy");

String EXPDATE = common.setNullToString((String) session.getAttribute("SES_EXPDATE")); // 31- 10-2014

String tempEXPDATE = timestampFormat.format(timestampFormat2.parse(EXPDATE)); //20141031
int intExpdate = Integer.parseInt(tempEXPDATE.substring(6,8)); //30

最佳答案

下面的代码可以帮助你

     Calendar cal = Calendar.getInstance();
Date date=timestampFormat.parse(tempEXPDATE);
cal.setTime(date);
cal.add(Calendar.DATE, 1);
String newDate=timestampFormat.format(date);

请注意,我从您的代码中选择了 timestampFormattempEXPDATE

关于java - 日期 "DAY"自动递增 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25322955/

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