12
Dec
public class Main {
public static void main(String[] args) {
String format = "dd-MM-yyyy hh:mm:ss aa";
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format); //passing format as constructor
String date = simpleDateFormat.format(new Date());
System.out.println(date);
}
}
Output:
12-12-2020 04:06:07 PM
Leave a Reply