This is related to How to set time zone of a java.util.Date?
I am trying to set in the eclipse debugger the value of
private transient long fastTime;
in a java.util.Date
.
I want to set the date to sometime on 01/01/2010 which based on http://www.epochconverter.com is the value (in milliseconds) 1262362075000
.
This field is supposed to be of long
type but when I try to set this field (fastTime
) I am told by eclipse that this value is too large for the field.
What am I doing wrong?