Java Calendar setTimeInMillis() 方法



描述

Java Calendar setTimeInMillis(long) 方法使用给定的长整型值设置日历的当前时间。

声明

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

public void setTimeInMillis(long millis)

参数

millis − 从纪元开始以毫秒为单位的新时间(UTC 时间)。

返回值

此方法不返回值。

异常

在当前日期的日历实例中设置毫秒时间示例

以下示例演示了 Java Calendar setTimeInMillis() 方法的使用。我们使用 getInstance() 方法创建当前日期的日历实例,并使用 getTime() 方法打印日期和时间。然后,我们使用 setTimeInMillis() 更新日期。最后,打印更新后的日期。

package com.tutorialspoint;

import java.util.Calendar;

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

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

      // get the time
      System.out.println("Current time is :" + cal.getTime());

      // set time to 5000 ms after january 1 1970
      cal.setTimeInMillis(5000);

      // print the new time
      System.out.println("After setting Time:  " + cal.getTime());
   }
}

输出

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

Current time is :Wed Sep 28 17:56:54 IST 2022
After setting Time:  Thu Jan 01 05:30:05 IST 1970

在当前日期的 GregorianCalendar 实例中设置毫秒时间示例

以下示例演示了 Java Calendar setTimeInMillis() 方法的使用。我们使用 GregorianCalendar() 方法创建当前日期的日历实例,并使用 getTime() 方法打印日期和时间。然后,我们使用 setTimeInMillis() 设置日期进行更新。最后,打印更新后的日期。

package com.tutorialspoint;

import java.util.Calendar;
import java.util.GregorianCalendar;

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

      // create a calendar
      Calendar cal = new GregorianCalendar();

      // get the current time
      System.out.println("Current time is :" + cal.getTime());

      // set time to 5000 ms after january 1 1970
      cal.setTimeInMillis(5000);

      // print the new time
      System.out.println("After setting Time:  " + cal.getTime());
   }
}

输出

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

Current time is :Wed Sep 28 17:59:23 IST 2022
After setting Time:  Thu Jan 01 05:30:05 IST 1970

在给定日期的 GregorianCalendar 实例中设置毫秒时间示例

以下示例演示了 Java Calendar setTimeInMillis() 方法的使用。我们使用 GregorianCalendar() 方法创建特定日期的日历实例,并使用 getTime() 方法打印日期和时间。然后,我们使用 setTimeInMillis() 设置日期进行更新。最后,打印更新后的日期。

package com.tutorialspoint;

import java.util.Calendar;
import java.util.GregorianCalendar;

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

      // create a calendar
      Calendar cal = new GregorianCalendar(2022,8,27);

      // get the current time
      System.out.println("Current time is :" + cal.getTime());

      // set time to 5000 ms after january 1 1970
      cal.setTimeInMillis(5000);

      // print the new time
      System.out.println("After setting Time:  " + cal.getTime());
   }
}

输出

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

Current time is :Tue Sep 27 00:00:00 IST 2022
After setting Time:  Thu Jan 01 05:30:05 IST 1970
java_util_calendar.htm
广告