How to get current timestamp using Java




Java Tutorial for Beginners
Java Tutorial for Beginners

The example below shows how to get current timestamp in Java.

Example 1 – using Date() and Timestamp()

/*
 How to get current timestamp using Java
*/

import java.sql.Timestamp;
import java.util.Date;

public class GetTimestamp {
    public static void main ( String[] args )
    {
        Date date= new Date();
        System.out.println(new Timestamp(date.getTime()));
    }
}

/*
Output:
2016-11-10 23:31:22.61

*/

 

Example 2 – simpler example that avoids using Date() and only uses Timestamp()

/*
 How to get current timestamps using Java
*/

import java.sql.Timestamp;

public class GetTimestamp {
    public static void main ( String[] args )
    {
        System.out.println(new Timestamp(System.currentTimeMillis()));
    }
}

/*
Output:
2016-11-10 23:37:29.401

*/

 
 





Partner Sites

VideoToGifs.com

EasyOnlineConverter.com

SqliteTutorials.com





1 Comment

  1. java is a programming language and computing platform first released by Sun Microsystems in 1995. There are lots of applications and websites that will not work unless you have java installed, and more are created every day.
    java was developed by Sun microsystem as an Object oriented language for general purpose business applications. The target of java is to write a program once and then run this program on multiple operating systems.The first publicly available version of java ( java 1.0) was released in ‘95. Sun Microsystems was acquired by the Oracle Corporation in 2k10. Oracle has now the steermanship for java . In 2k06 Sun started to make java accessible under the GNU General Public License (GPL). Oracle continued this plan called Open JDK.

    Over time new improved versions of java have been released. The present version of java is java 1.9 which is also known as java 9.
    java is defined by a specification and consists of a programming language, a compiler, core libraries and a runtime ( java virtual machine) The java runtime permit software developers to write program code in other languages than the java programming language which still runs on the java virtual machine. The java platform is usually associated with the java virtual machine and the java core libraries.
    The java syntax is similar to C++. java is case-sensitive, e.g., variables called myValue andmyvalue are treated as different variables.

    Basic topics Covered in java is
    INDEX
    Introduction of java

    JDK vs JVM vs JVM

    Java Data Types

    Java Operators

    Java Loop Control

    Java Decision Making

    Java Array

    Java String

    Class And Object

    This Keyword in Java

    Static Keyword in Java

    Constructor in Java

    Overloading in Java

    Overriding in Java
    ::

Leave a Reply

Your email address will not be published.


*