Mega Code Archive

 
Categories / Java Tutorial / Internationalization
 

Formatting a Message Containing a Date

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