如何通过将DAY_OF_WEEK和WEEK_OF_MONTH设置为日历类来获取java中的日期

时间:2015-07-16 15:03:09

标签: java

我希望在使用java中的Calender类修改星期几后获取日期

我想打印16 7 2015(DD / MM / YYYY);

int monthIndex=6,weekIndex=2,dayIndex=4;



            Calendar c = Calendar.getInstance();    
            c.set(Calendar.MONTH, (monthIndex + 1));
            c.set(Calendar.WEEK_OF_MONTH, weekIndex+1 );
            c.set(Calendar.DAY_OF_WEEK, dayIndex+1);

            int recurMonth = c.get(Calendar.MONTH);
            int recWeek=c.get(Calendar.WEEK_OF_MONTH);
            int recurDate = c.get(Calendar.DATE);
            int recurYear = c.get(Calendar.YEAR);           
            int dayofMonth=c.get(Calendar.DAY_OF_MONTH);
            int dayofWeek=c.get(Calendar.DAY_OF_WEEK);
            int dayofweekinmonth=c.get(Calendar.DAY_OF_WEEK_IN_MONTH);

但显示错误的日期

3 个答案:

答案 0 :(得分:4)

我猜很清楚。

    Calendar today = Calendar.getInstance();
    today.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY);
    today.set(Calendar.WEEK_OF_MONTH, 5);
    System.out.println(today.get(Calendar.DATE));

代码不言自明。

答案 1 :(得分:0)

使用SimpleDateFormat格式化日期:

grep -Eo '[0-9]+' file_temp | sort -rn | head -n 1 > file_temp_max

答案 2 :(得分:0)

TL;博士

转到下一个星期一:

LocalDate.of( 1986 , 2 , 23 )                            // Represent a certain date, without time-of-day and without time zone.
    .with( TemporalAdjusters.next( DayOfWeek.MONDAY ) )  // Move to the following Monday.
    .format(                                             // Generate a string representing this object’s value, using an automatically localizing formatter.
        DateTimeFormatter.ofLocalizedDate( FormatStyle.SHORT ).withLocale( Locale.UK )
    )

...或者,对于“同月的第三个星期一”:

LocalDate.of( 1986 , 2 , 23 )                            // Represent a certain date, without time-of-day and without time zone.
    .with( TemporalAdjusters.dayOfWeekInMonth( 3 , DayOfWeek.MONDAY ) )  // Move to the third Monday of the same month.
    .format(                                             // Generate a string representing this object’s value, using an automatically localizing formatter.
        DateTimeFormatter.ofLocalizedDate( FormatStyle.SHORT ).withLocale( Locale.UK )
    )

java.time

现代方法使用 java.time 类来取代麻烦的旧遗留日期时间类。

LocalDate

LocalDate类表示没有时间且没有时区的仅限日期的值。

时区对于确定日期至关重要。对于任何给定的时刻,日期在全球范围内因地区而异。例如,在Paris France午夜后的几分钟是新的一天,而Montréal Québec中仍然是“昨天”。

如果未指定时区,则JVM会隐式应用其当前的默认时区。该默认值可能随时更改,因此您的结果可能会有所不同。最好明确指定您期望/预期的时区作为参数。

continent/region的格式指定proper time zone name,例如America/MontrealAfrica/CasablancaPacific/Auckland。切勿使用诸如ESTIST之类的3-4字母缩写,因为它们不是真正的时区,不是标准化的,甚至不是唯一的(!)。

ZoneId z = ZoneId.of( "America/Montreal" ) ;  
LocalDate today = LocalDate.now( z ) ;

如果要使用JVM的当前默认时区,请求它并作为参数传递。如果省略,则隐式应用JVM的当前默认值。最好是明确的,因为默认情况下可以在运行时期间由JVM中任何应用程序的任何线程中的任何代码随时更改

ZoneId z = ZoneId.systemDefault() ;  // Get JVM’s current default time zone.

或指定日期。您可以将月份设置为一个数字,1月至12月的数字为1-12。

LocalDate ld = LocalDate.of( 1986 , 2 , 23 ) ;  // Years use sane direct numbering (1986 means year 1986). Months use sane numbering, 1-12 for January-December.

或者,更好的是,使用预定义的Month枚举对象,一年中的每个月一个。提示:在整个代码库中使用这些Month对象,而不仅仅是整数,以使代码更具自我记录功能,确保有效值,并提供type-safety

LocalDate ld = LocalDate.of( 1986 , Month.FEBRUARY , 23 ) ;

调节器

要移至其他日期,请使用TemporalAdjusters课程中的TemporalAdjuster实施。使用DayOfWeek枚举对象指定所需的星期几。

LocalDate nextMonday = ld.with( TemporalAdjusters.next( DayOfWeek.MONDAY ) ) ;

如果您的目标是“移至该月的第三个星期一”,请使用其他TemporalAdjuster实施。

TemporalAdjuster ta = TemporalAdjusters.dayOfWeekInMonth( 3 , DayOfWeek.MONDAY ) ;
LocalDate thirdMondayOfSameMonth = ld.with( ta ) ;

关于 java.time

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

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

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

如果JDBC driver符合JDBC 4.2或更高版本,您可以直接与数据库交换 java.time 对象。不需要字符串或java.sql。* classes。

从哪里获取java.time类?

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