Java Calendar setMinimalDaysInFirstWeek() 方法



描述

Java Calendar setMinimalDaysInFirstWeek(int) 方法设置一年中第一周所需的最小天数。

声明

以下是 java.util.Calendar.setMinimalDaysInFirstWeek() 方法的声明

public void setMinimalDaysInFirstWeek(int value)

参数

value − 一年第一周所需的最小天数。

返回值

此方法不返回值。

异常

在当前日期的日历实例中设置第一周的最小天数示例

以下示例展示了 Java Calendar setMinimalDaysInFirstWeek(value) 方法的使用。我们创建了一个当前日期的日历实例,并打印第一周的最小天数,然后使用 setMinimalDaysInFirstWeek() 方法修改第一周的最小天数,并打印修改后的值。

package com.tutorialspoint;

import java.util.Calendar;

public class CalendarDemo {
   public static void main(String[] args) {

      // create a calendar
      Calendar cal = Calendar.getInstance();

      // get what is the minimal days required in the first week
      int min = cal.getMinimalDaysInFirstWeek();
      System.out.println("Minimal Days in Week: " + min);

      // set the minimal days required in the first week
      cal.setMinimalDaysInFirstWeek(2);

      // print the result
      min = cal.getMinimalDaysInFirstWeek();
      System.out.println("Minimal Days in Week: " + min);
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Minimal Days in Week: 1
Minimal Days in Week: 2

在使用 GB 本地化设置的日历实例中设置第一周的最小天数示例

以下示例展示了 Java Calendar setFirstDayOfWeek(value) 方法的使用。我们使用 en 本地化创建了一个当前日期的日历实例,并打印第一周的最小天数,然后使用 setMinimalDaysInFirstWeek() 方法修改第一周的最小天数,并打印修改后的值。

package com.tutorialspoint;

import java.util.Calendar;
import java.util.Locale;

public class CalendarDemo {
   public static void main(String[] args) {

      // create a calendar
      Calendar cal = Calendar.getInstance(new Locale("en", "GB"));

      // get what is the minimal days required in the first week
      int min = cal.getMinimalDaysInFirstWeek();
      System.out.println("Minimal Days in Week: " + min);

      // set the minimal days required in the first week
      cal.setMinimalDaysInFirstWeek(2);

      // print the result
      min = cal.getMinimalDaysInFirstWeek();
      System.out.println("Minimal Days in Week: " + min);
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Minimal Days in Week: 4
Minimal Days in Week: 2

在使用 CA 本地化设置的日历实例中设置第一周的最小天数示例

以下示例展示了 Java Calendar setFirstDayOfWeek(value) 方法的使用。我们使用 fr 本地化创建了一个当前日期的日历实例,并打印第一周的最小天数,然后使用 setMinimalDaysInFirstWeek() 方法修改第一周的最小天数,并打印修改后的值。

package com.tutorialspoint;

import java.util.Calendar;
import java.util.Locale;

public class CalendarDemo {
   public static void main(String[] args) {

      // create a calendar
      Calendar cal = Calendar.getInstance(new Locale("fr", "CA"));

      // get what is the minimal days required in the first week
      int min = cal.getMinimalDaysInFirstWeek();
      System.out.println("Minimal Days in Week: " + min);

      // set the minimal days required in the first week
      cal.setMinimalDaysInFirstWeek(2);

      // print the result
      min = cal.getMinimalDaysInFirstWeek();
      System.out.println("Minimal Days in Week: " + min);
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Minimal Days in Week: 1
Minimal Days in Week: 2
java_util_calendar.htm
广告