Friday 20 July 2018

How to use setTimeInMillis(long millis) method of Java.util.calendar class


Click here to watch on Youtube:
https://www.youtube.com/watch?v=ljXBPriLry8&list=UUhwKlOVR041tngjerWxVccw

CalendarDemo.java

import java.util.Calendar;
import java.util.Date;

public class CalendarDemo
{
    public static void main(String[] args)
    {
        Calendar cal = Calendar.getInstance();
        cal.set(2013, 3, 10);
        System.out.println("Before setting TimeInMillis = " + cal.getTime());

        Date date = new Date();
        long ms = date.getTime();

        /*
         * Parameters:
         *
         * millis - the new time in UTC milliseconds from the epoch.
         */

        cal.setTimeInMillis(ms);

        System.out.println("After setting TimeInMillis  = " + cal.getTime());
    }
}

Output

Before setting TimeInMillis = Wed Apr 10 10:01:22 IST 2013
After setting TimeInMillis  = Thu Jun 28 10:01:34 IST 2018

Click the below link to download the code:
https://sites.google.com/site/ramj2eev2/java_basics/CalendarDemo_setTimeInMillis.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava_2018/CalendarDemo_setTimeInMillis

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/fcab7bc6a80f12c850b8ccc28d71601c94666bbb/BasicJava_2018/CalendarDemo_setTimeInMillis/?at=master

See also:

  • All JavaEE Videos Playlist
  • All JavaEE Videos
  • All JAVA EE Links
  • Spring Tutorial
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Kids Tutorial
  • Cooking Tutorial
  • No comments:

    Post a Comment