Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.Calendar;

public class Main {

    public static void main(String[] args) {

        Calendar cal = Calendar.getInstance();

        // print current first day of the week
        int day = cal.getFirstDayOfWeek();
        System.out.println("Current first day of the week:" + day);

        // set first day of the week as something else
        cal.setFirstDayOfWeek(Calendar.WEDNESDAY);

        // print altered first day of the week
        day = cal.getFirstDayOfWeek();
        ;
        System.out.println("Altered first day of the week:" + day);
    }
}