Tuesday, March 3, 2015

Current Time on a java pgm



Displaying current time

import java.text.SimpleDateFormat;
import java.util.Date;
 public class Main
 {
   public static void main(String[] args)
   {
      Date date = new Date();
      SimpleDateFormat sdf = new SimpleDateFormat("h");
      System.out.println("hour in h format : "+ sdf.format(date));
   }
}

No comments:

Post a Comment