Joda Time - 获得一年中的所有周

时间:2012-05-23 13:34:50

标签: java jodatime date-arithmetic

有没有办法获得一年中的所有周,加上每周的开始和结束日期? (使用Joda-Time

类似这样的事情(2012):

周:21 开始于:2012年5月21日 结尾:27.05.12

感谢您的帮助

3 个答案:

答案 0 :(得分:5)

试试这个:

SimpleDateFormat df = new SimpleDateFormat("dd.MM.yyyy"); 
Period weekPeriod = new Period().withWeeks(1);
DateTime startDate = new DateTime(2012, 1, 1, 0, 0, 0, 0 );
DateTime endDate = new DateTime(2013, 1, 1, 0, 0, 0, 0 );
Interval i = new Interval(startDate, weekPeriod );
while(i.getEnd().isBefore( endDate)) {
    System.out.println( "week : " + i.getStart().getWeekOfWeekyear()
            + " start: " + df.format( i.getStart().toDate() )
            + " ending: " + df.format( i.getEnd().minusMillis(1).toDate()));
    i = new Interval(i.getStart().plus(weekPeriod), weekPeriod);
}  

请注意,周数从52开始,然后从1 - 51开始,因为1月1日不在星期日。

如果您希望查看每个星期一到星期日的日期:

SimpleDateFormat df = new SimpleDateFormat("dd.MM.yyyy"); 
Period weekPeriod = new Period().withWeeks(1);
DateTime startDate = new DateTime(2012, 1, 1, 0, 0, 0, 0 );
while(startDate.getDayOfWeek() != DateTimeConstants.MONDAY) {
    startDate = startDate.plusDays(1);
}

DateTime endDate = new DateTime(2013, 1, 1, 0, 0, 0, 0);
Interval i = new Interval(startDate, weekPeriod);
while(i.getStart().isBefore(endDate)) {
    System.out.println("week : " + i.getStart().getWeekOfWeekyear()
            + " start: " + df.format(i.getStart().toDate())
            + " ending: " + df.format(i.getEnd().minusMillis(1).toDate()));
    i = new Interval(i.getStart().plus(weekPeriod), weekPeriod);
}

答案 1 :(得分:1)

从未使用过Joda Time。 我会做这样的事情:

  1. 创建一个具有周数和两个DateTimes(开始,结束)
  2. 的类
  3. 创建此类的列表
  4. 在一年中(每周一周)进行迭代并将当前周保存在列表中
  5. 这就是我使用标准java日历api的方式。可能Joda Time有点容易,我不知道。

答案 2 :(得分:1)

Joda-Time处于维护模式

仅供参考,Joda-Time项目现在位于maintenance mode,团队建议迁移到java.time课程。请参阅Tutorial by Oracle

定义'周'

您可以用不同的方式定义一周。

我认为你的意思是标准ISO 8601 week。第1周是一年中的第一个星期四,从星期一开始,而以星期为基础的一年有52或53周。在日历年结束或开始的几天可能会在另一个星期的年份登陆。

java.time

现代方法使用java.time类,并在ThreeTen-Extra项目中找到它们的扩展名。

ThreeTen-Extra ,使用YearWeek课程。

YearWeek start = YearWeek.of( 2017 , 1 ) ;  // First week of the week-based year 2017.

获得本周的52周或53周的周数。

int weeks = start.lengthOfYear() ;

...或...

int weeks = ( start.is53WeekYear() ) ? 53 : 52 ;

一年中每周的循环。对于每个YearWeek,请求它为该周的开头和结尾生成LocalDate

List<String> results = new ArrayList<>( weeks ) ;
YearWeek yw = start ;
for( int i = 1 , i <] weeks , i ++ ) {
    String message = "Week: " + yw + " | start: " + yw.atDay( DayOfWeek.MONDAY ) + " | stop: " + yw.atDay( DayOfWeek.SUNDAY ) ;
    results.add( message ) ;
    // Prepare for next loop.
    yw = yw.plusWeeks( 1 ) ;
}

关于java.time

java.time框架内置于Java 8及更高版本中。这些类取代了麻烦的旧legacy日期时间类,例如java.util.DateCalendar和&amp; SimpleDateFormat

现在位于Joda-Timemaintenance mode项目建议迁移到java.time类。

要了解详情,请参阅Oracle Tutorial。并搜索Stack Overflow以获取许多示例和解释。规范是JSR 310

从哪里获取java.time类?

ThreeTen-Extra项目使用其他类扩展java.time。该项目是未来可能添加到java.time的试验场。您可以在此处找到一些有用的课程,例如IntervalYearWeekYearQuartermore