You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
576 B
Java

Use a SimpleDateFormat to print the date our way
public class DateDemo {
public static void main(String[] args) {
//+
Date dNow = new Date();
/* Simple, Java 1.0 date printing */
System.out.println("It is now " + dNow.toString());
// Use a SimpleDateFormat to print the date our way.
SimpleDateFormat formatter
= new SimpleDateFormat ("E yyyy.MM.dd 'at' hh:mm:ss a zzz");
System.out.println("It is " + formatter.format(dNow));
//-
}
}