How to get current timestamps in Java
Published: March 8, 2010 , Updated: March 8, 2010 , Author: mkyong
Here’s a Java example to show how to get current timestamps in Java.
package com.mkyong.common; import java.sql.Timestamp; import java.util.Date; public class GetCurrentTimeStamp { public static void main( String[] args ) { java.util.Date date= new java.util.Date(); System.out.println(new Timestamp(date.getTime())); } }
output
2010-03-08 14:59:30.252
Any Java questions or problems? please post at this JavaNullPointer.com forum, see you there ~