Here you can find the source of getSeconds1()
public static String getSeconds1()
//package com.java2s; import java.sql.Timestamp; public class Main { public static String getSeconds1() { Timestamp stamp1 = new Timestamp(System.currentTimeMillis()); return stamp1.toString(); }//from w w w . j a va 2s . co m }