public class Main { public static void main(String[] argv) throws Exception {
Object[] params = new Object[] { new Date(), new Date(0) };
String msg = MessageFormat.format("{0,time,short} and UTC of 0 is {1,time,short}", params);
System.out.println(msg);
}
}