How do I take a birthdate entered by a user and turn into milliseconds so that I can calculate how old they would be on a different planet

Here is the code I have so far:

DateFormat df = new SimpleDateFormat("MM dd yyyy");
Date dateBirth = df.parse(birthdate);
Calendar calBirth = new GregorianCalendar();
calBirth.setTime(dateBirth);


Edit 1: Yes I'm looking to get the milliseconds between the user's birthdate and the current time in order to divide that by a planet's days in a year

link|improve this question

1  
Do you really require milliseconds? That seems a little too fine a precision for calculating an age, don't you think? – paxdiablo Feb 25 '10 at 22:17
Just to clarify, you're looking for the milliseconds between the user's birthdate and the current time? – jball Feb 25 '10 at 22:17
1  
That would make more sense than my answer. I guess it took me a while to wrap my head around the "age on another planet" theme - I guess if you know the number of milliseconds per year on Mars, say, you can divide your current age in milliseconds by that factor. – dsolimano Feb 25 '10 at 22:20
feedback

3 Answers

up vote 8 down vote accepted

dateBirth.getTime() will give you the number of milliseconds since the epoch, if that's what you're looking for?

EDIT -

In order to get the difference between now and the birthday, you can obviously just get now as a Date object, convert that to milliseconds, and subtract - eg now.GetTime() - dateBirth.GetTime().

link|improve this answer
You beat me to the answer, but I'm leaving mine up since you failed to make any time travel jokes in yours. – jball Feb 25 '10 at 22:33
1  
What's with all the capitalization of the first letters of methods in a question about Java? – ColinD Feb 25 '10 at 23:30
@jball, +1 for you because I didn't have the guts to make the joke. @ColinD, that's what happens after I answer a Java question after spending all day programming in C#. – dsolimano Feb 26 '10 at 1:19
feedback
Date d = new Date();
long msSinceBirth = d.getTime() - dateBirth.getTime();

This assumes the user is born in the past. Time travellers will produce negative values for msSinceBirth.

link|improve this answer
No +1 - time travel joke not up to required standard. – Stephen C Feb 25 '10 at 22:49
2  
@Stephen, if I could go back in time and write a better one, I would. – jball Feb 25 '10 at 22:49
Paradoxically, the "edit" button means that you don't need to go back in time to write a better joke :-) – Stephen C Feb 26 '10 at 1:47
1  
@Stephen, going back in time would be the trivial part. It's the other half of the problem that I can't solve. – jball Feb 26 '10 at 7:08
feedback

Not quite sure I fully understand the question, but Calendar has the method right in it...

getTimeInMillis

public long getTimeInMillis()

Gets this Calendar's current time as a long.

Returns: the current time as UTC milliseconds from the epoch.

See Also: getTime(), setTimeInMillis(long)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.