How to create a java.util.Calendar instance at epoch time?
Is there any existing way to get a Calendar populated with time at epoch using Calendar API's other than expli开发者_StackOverflow社区citly setting them at epoch? All I was able to do was to get the current time.
There is no pre defined constructor or factory method to do this, but it is fairly simple:
Calendar c = Calendar.getInstance();
c.setTimeInMillis(0);
精彩评论