Monday 21 May 2018

How to use toEpochMilli method of Instant class | Java 8 Date and Time


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

InstantDemo.java

import java.time.Instant;

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

        Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
        System.out.println(instant);

        /*
         * Converts this instant to the number of milliseconds from
         * the epoch of 1970-01-01T00:00:00Z.
         *
         * Returns:the number of milliseconds since the epoch of
         * 1970-01-01T00:00:00Z
         */

        long ms = instant.toEpochMilli();
        System.out.println(ms);

    }

}

Output

2014-12-03T10:15:30Z
1417601730000

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

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

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/80c7c27095bd0aa4eb0109eac12d92549dcd717d/BasicJava_2018/InstantDemo_toEpochMilli/?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