**DATE FROM:**
def format=new java.text.SimpleDateFormat("yyyyMMdd")
def cal=Calendar.getInstance()
cal.get(Calendar.YEAR);
cal.set(Calendar.MONTH, 0);
cal.set(Calendar.DAY_OF_MONTH, 31);
[format.format(cal.getTime())]
**DATE TO:**
def format=new java.text.SimpleDateFormat("yyyyMMdd")
def cal=Calendar.getInstance()
cal.add(Calendar.DAY_OF_MONTH,-cal.get(Calendar.DAY_OF_MONTH))
[format.format(cal.getTime())]
年份变化时(2020 - 2021)-将上一年的1月与今年的1月混淆
我必须更正,以便在1月(12月报告)提取前一年31.01 - 31.12期间的数据。
该作业是错误的,因为它提取了2021年1月31日至2020年12月31日的数据
// retrieve details of the current date
def cal = Calendar.instance;
def currentYear = cal.get(Calendar.YEAR);
def currentMonth = cal.get(Calendar.MONTH);
// set the instance to the start of the previous month
if ( currentMonth == 0 ) {
cal.set(currentYear-1, 11, 1);
} else {
cal.set(currentYear, (currentMonth-1), 1);
}
// extract the date, and format to a string
Date previousMonthStart = cal.time;
String previousMonthStartFormatted = previousMonthStart.format('yyyy-MM-dd');
1条答案
按热度按时间gmxoilav1#
如果您要查找的是上一年的开始,如在您的标题,然后下面的代码:
演示了一种完成此操作的方法。运行时,将打印(
now
为今天的日期2021.Mar.10):评论后更新
您可以使用以下代码获取上个月和当前月份的月末:
打印当前日期:
或者如果我们是在一月:
它打印:
一般来说,如果你的目标日期是基于当前日期(比如,上个月,下个月,三个月前等等),你应该尽量避免使用手动日期算法。使用java提供的api:s。日期类负责处理滚动年,滚动月,滚动日,闰年等等,所有这些你真的不想花时间自己解决的东西。