MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

import java.text.MessageFormat;
import java.util.Date;

public class MainClass {
    public static void main(String args[]) throws Exception {
        Double kb = new Double(3.5);
        Date today = new Date();

        String pattern = "{0}K was deleted on {1}.";
        Object[] arguments = { kb, today };
        System.out.println(MessageFormat.format(pattern, arguments));
    }
}