gpt4 book ai didi

java - 将更改的 GregorianCalendar 转换为 Date

转载 作者:行者123 更新时间:2023-11-30 09:19:34 25 4
gpt4 key购买 nike

我在方法中有以下代码:

final String WEEK_OF_YEAR    = "w";

GregorianCalendar calendar = new GregorianCalendar();
calendar.set(Calendar.WEEK_OF_YEAR, Integer.valueOf(get(WEEK_OF_YEAR)) + 1);
//The get(WEEK_OF_YEAR) returns the actual week of the year

DateFormat formatter = new SimpleDateFormat("EE, dd.MM.yyyy");
return formatter.format(calendar.getTime());

所以我想要的是获取下周的 "EE, dd.MM.yyyy" 格式的 String。所以看起来 calendar.getTime() 正在返回实际的一周...

最佳答案

如果您想要下周,请使用此代码:

 GregorianCalendar calendar = new GregorianCalendar();
calendar.add(Calendar.WEEK_OF_YEAR, 1);

请注意,new Calender() 返回当前周。我不知道 GregorianCalendar()。你可以试试。

关于java - 将更改的 GregorianCalendar 转换为 Date,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17892031/

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