Is there any existing way to get a Calendar populated with time at epoch using Calendar API's other than explicitly setting them at epoch? All I was able to do was to get the current time.
A:
There is no pre defined constructor or factory method to do this, but it is fairly simple:
Calendar c = Calendar.getInstance();
c.setTimeInMillis(0);
Nivas
2010-10-20 13:16:11