Answers for "simpledateformat in java with date and time"

1

date format in java

String pattern = "EEEEE dd MMMMM yyyy HH:mm:ss.SSSZ";
SimpleDateFormat simpleDateFormat =
        new SimpleDateFormat(pattern, new Locale("da", "DK"));

String date = simpleDateFormat.format(new Date());
System.out.println(date);
Posted by: Guest on April-12-2020

Code answers related to "simpledateformat in java with date and time"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language