Use arguments indexes to simplify the creation of a custom time and date format
/**
*Output:
Today is day 26 of April, 2006
*/
import java.util.Calendar;
import java.util.Formatter;
public class MainClass {
public static void main(String args[]) {
Formatter fmt = new Formatter();
Calendar cal = Calendar.getInstance();
fmt.format("Today is day %te of %<tB, %<tY", cal);
System.out.println(fmt);
}
}
Related examples in the same category