Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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("The time is {0} and UTC of 0 is {1}", params);

        msg = MessageFormat.format("The time is {0,time} and UTC of 0 is {1,time}", params);
        System.out.println(msg);
    }
}