class MessageFormatApp { public static void main(String args[]) {
String pattern = "The time is {0,time} and ";
pattern += "your lucky number is {1,number}.";
MessageFormat format = new MessageFormat(pattern);
Object objects[] = { new Date(), new Integer((int) (Math.random() * 1000)) };
String formattedOutput = format.format(objects);
System.out.println(formattedOutput);
}
}