Tutorials Point


  Java Basics Examples
  Java Tutorial
  Java Useful Resources
  Selected Reading

© 2011 TutorialsPoint.COM


  Home     References     Discussion Forums     About TP  

Java Examples - Displaying current time


previous next AddThis Social Bookmark Button


Problem Description:

How to format time in 24 hour format?

Solution:

This example formats the time into 24 hour format (00:00-24:00) by using sdf.format(date) method of SimpleDateFormat class.

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));
   }
}

Result:

The above code sample will produce the following result.

hour in h format : 8


previous next Printer Friendly



  

Advertisement

Online Image Processing

Indian Baby Names