I have a quick question, I have values of day (int), month (String), year (int), hour (int), minute (int), and second (int). What I want to do it see how many milliseconds there are between the date I have and Jan 1 1970.
So just as an example, how could I tell how many milliseconds there were from Jan 1970 to June 1 2011, 3:12:59 pm?
I am pretty sure this will be simple but I am really exhausted. I think I could use
dateTime.getTimeInMillis());
but I am not exactly sure. I am not the best with Java dates so any help would be awesome!
Thanks!!!!