I want to take two times (in seconds since epoch) and show the difference between the two in formats like:
- 2 minutes
- 1 hour, 15 minutes
- 3 hours, 9 minutes
- 1 minute ago
- 1 hour, 2 minutes ago
How can I accomplish this??
|
I want to take two times (in seconds since epoch) and show the difference between the two in formats like:
How can I accomplish this?? |
|||||||||||||||||
|
|
|||||||||
|
|
Since everyone shouts "YOODAA!!!" but noone posts a concrete example, here's my contribution. You could also do this with JodaTime. Use Here's a kickoff example:
Much more clear and concise, isn't it? This prints by now 32 years, 1 months, 1 weeks, 5 days, 6 hours, 56 minutes, 24 seconds ago (Cough, old, cough) |
||||
|
|
|
I'd recommend you have a look at HumanTime |
|||||||
|
|
Yup awakened the dead I have, but here's my improved implementation based on @mtim posted code, as this thread comes almost on top of the searches so I am messing with the sleepy hollow,
It obviously can be improved. basically it tries to get the time span more friendly, there are a few limitation though i.e. it would behave strangely if the time passed (parameter) is in future, and its limited up to the days, hours and seconds only (months and years not handled, so that someone else can ;-). sample outputs are:
, cheers :D EDIT: now supports months and years :P |
||||
|
|
|
You can also try JODA if the simple solution is unacceptable. It deals with Durations nicely. |
|||
|
|
I'm not an expert in Java, but you can do t1-t2=t3(in seconds) then divide that by 60, would give you minutes, by another 60 would give you seconds. Then it's just a matter of figuring out how many divisions you need. Hope it helps. |
|||
|
|
|
I always start with Joda Time. Working with dates and times in Java is always "fun" but Joda Time takes the strain off. They have Interval and Duration classes which do half of what you are looking for. Not sure if they have a function for outputing in readable format though. I'll keep looking. HTH |
|||
|
|
|
If your time-spans cross daylight-saving (summer-time) boundaries, do you want to report the number of days? For example, 23:00 to 23:00 the next day is always a day but may be 23, 24 or 25 hours depending on whether the you cross a daylight-savings transition. If you care about that, make sure you factor it into your choice. |
|||||
|
|
The Calendar class can handle most date related math. You will have to get the result of compareTo and output the format yourself though. There isn't a standard library that does exactly what you're looking for, though there might be a 3rd party library that does. |
|||
|
|
|
OK, after a brief peruse of the API it seems that you could do the following: -
HTH |
|||
|
|
|
The solution of "Abduliam Rehmanius" seems pretty nice, or you can use some above library or you can create new simple things, refer the JS solution at here: http://www.datejs.com/. It's not difficult to transform into Java lang :-) Hope my link useful for you! |
|||
|
|
|
some code that plays with date formatting... and time ago.
|
|||
|
|
To create a string like "2 Minutes" you should use DateFormatter/DateFormat. You can find more details on this in the the Java API spec (java.sun.com). |
|||||||||
|