MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

/*
 * Output:
Thu Aug 03 13:27:11 PDT 2006
 */

import java.util.*;

public class MainClass {

    public static void main(String args[]) {

        Date date = new Date();

        long msec = date.getTime();

        msec += 100 * 24 * 60 * 60 * 1000L;

        date.setTime(msec);

        System.out.println(date);
    }
}