Re: Int->String formatting method
- From: "Oliver Wong" <owong@xxxxxxxxxxxxxx>
- Date: Tue, 26 Sep 2006 17:46:40 GMT
"Deniz Dogan" <kristnjov@xxxxxxxxxx> wrote in message news:efanv0$l2m$1@xxxxxxxxxxxxxxxxxxxxxxx
Deniz Dogan wrote:Hello again! Yes, I have yet another problem for all of you great programmers in here.
This should actually be a pretty easy task to complete, but somehow the blood in my veins doesn't seem to flow the right way just now. Here's the problem:
I have an amount of milliseconds, in the range [0,Integer.MAX_VALUE] and I want to format it to a String of the format "HH:nn:ss,mmm" where HH ranges between 00-99, nn between 00-59, ss between 00-59 and mmm between 000-999 (all of the ranges inclusive).
The only thing I can come up with now as a solution is a bunch of if-then-else statements, but really now, we shouldn't have to go and do that, do we?
I love stating problems. Looking forward to your help.
/Deniz Dogan
Disregard my post, a friend of mine solved it on four rows of code and O(1) fashion.
You should have post the solution, in case someone in the future stumbles upon this post via google and has a similar problem and is looking for the solution.
here's my guess at the solution:
public static String toTimeString(long milliseconds) {
final long MS_PER_SEC = 1000;
final long MS_PER_MIN = MS_PER_SEC * 60;
final long MS_PER_HOUR = MS_PER_MIN * 60;
final long hours = milliseconds / MS_PER_HOUR;
milliseconds %= MS_PER_HOUR;
final long minutes = milliseconds / MS_PER_MIN;
milliseconds %= MS_PER_MIN;
final long seconds = milliseconds / MS_PER_SEC;
milliseconds %= MS_PER_SEC;
StringBuffer sb = new StringBuffer();
sb.append(hours);
sb.append(":");
sb.append(minutes);
sb.append(":");
sb.append(seconds);
sb.append(",");
sb.append(milliseconds);
return sb.toString();
}
- Oliver
.
- Follow-Ups:
- Re: Int->String formatting method
- From: Deniz Dogan
- Re: Int->String formatting method
- References:
- Int->String formatting method
- From: Deniz Dogan
- Re: Int->String formatting method
- From: Deniz Dogan
- Int->String formatting method
- Prev by Date: Re: Lost in J2ME, please help me!
- Next by Date: Re: Sending number - it makes no sense!
- Previous by thread: Re: Int->String formatting method
- Next by thread: Re: Int->String formatting method
- Index(es):
Relevant Pages
|
|