Java Timestamp Now nowTimestamp()

Here you can find the source of nowTimestamp()

Description

Return a Timestamp for right now

License

Open Source License

Return

Timestamp for right now

Declaration

public static java.sql.Timestamp nowTimestamp() 

Method Source Code

//package com.java2s;

public class Main {
    /**// ww  w . j  ava  2  s  .c o m
     * Return a Timestamp for right now
     *
     * @return Timestamp for right now
     */
    public static java.sql.Timestamp nowTimestamp() {
        return new java.sql.Timestamp(System.currentTimeMillis());
    }
}

Related

  1. getTimeStamp()
  2. getTimestamp()
  3. isCurrentDataByStartdataAndEnddata(Timestamp startDate, Timestamp endDate)
  4. nowTimestamp()
  5. nowTimestamp()
  6. nowTimestamp()