Easy Tutorial
❮ Thread Id Arrays Upperbound ❯

Java Example - Formatting Time (SimpleDateFormat)

Java Examples

The following example demonstrates how to use the format(date) method of the SimpleDateFormat class to format time.

Main.java File

import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    public static void main(String[] args) {
        Date date = new Date();
        String strDateFormat = "yyyy-MM-dd HH:mm:ss";
        SimpleDateFormat sdf = new SimpleDateFormat(strDateFormat);
        System.out.println(sdf.format(date));
    }
}

The output of the above code is:

2015-03-27 21:13:23

Java Examples

❮ Thread Id Arrays Upperbound ❯