import java.util.Calendar;
import java.util.GregorianCalendar;
public class ExGregCal {
public static void main(String[] args) throws Exception {
GregorianCalendar grecCal = new GregorianCalendar();
int day = grecCal.get(Calendar.DAY_OF_WEEK);
grecCal = new GregorianCalendar();
grecCal.set(1894, 2, 1, 0, 0, 0);
grecCal.setTime(grecCal.getTime());
day = grecCal.get(Calendar.DAY_OF_WEEK);
}
}