I'm making a stop watch where I'm using Java's SimpleDateFormat to convert the number of milliseconds into a nice "hh:mm:ss:SSS" format. The problem is the hours field always has some random number in it. Here's the code I'm using:

public static String formatTime(long millis) {
    SimpleDateFormat sdf = new SimpleDateFormat("hh:mm:ss.SSS");

    String strDate = sdf.format(millis);
    return strDate;
}

If I take off the hh part then it works fine. Otherwise in the hh part it'll display something random like "07" even if the argument passed in (number of milliseconds) is zero.

I don't know much about the SimpleDateFormat class though. Thanks for any help.

link|improve this question

2  
From this we can deduce that you live somewhere in the middle of the US. – Ed Staub Jul 15 '11 at 16:27
feedback

6 Answers

up vote 1 down vote accepted

Here's how I did it, using only the standard JDK (actually, this worked as far back as Java 1.1 until I changed StringBuffer to StringBuilder):

static public String formatMillis(long millis) {
    StringBuilder    buf=new StringBuilder(12);
    String           tmp;

    if(millis<0) { buf.append('-'); millis=Math.abs(millis); }
    tmp=("0" + (millis/3600000));          buf.append((tmp.length()>2) ? tmp.substring(1) : tmp);
    buf.append(":");
    tmp=("0" + ((millis%3600000)/60000));  buf.append(tmp.substring(tmp.length()-2));
    buf.append(":");
    tmp=("0" + ((millis%60000)/1000));     buf.append(tmp.substring(tmp.length()-2));
    buf.append(".");
    tmp=("00" + (millis%1000));            buf.append(tmp.substring(tmp.length()-3));
    return buf.toString();
    }
link|improve this answer
thanks, this was the kind of solution I was looking for – YoungMoney Jul 15 '11 at 20:09
using TimeUnit would be much cleaner in 2011. – Jarrod Roberson Jul 18 '11 at 15:44
Using JodaTime could be much cleaner in today ;) – Amir Raminfar Jul 19 '11 at 14:58
feedback

Support for what you want to do is built in to the lastest JDks with a little known class called TimeUnit.

What you want to use is java.util.concurrent.TimeUnit to work with intervals.

SimpleDateFormat does just what it sounds like it does, it formats instances of java.util.Date, or in your case it converts the long value into the context of a java.util.Date and it doesn't know what to do with intervals which is what you apparently are working with.

You can easily do this without having to resort to external libraries like JodaTime.

import java.util.concurrent.TimeUnit;

public class Main
{        
    private static String formatInterval(final long l)
    {
        final long hr = TimeUnit.MILLISECONDS.toHours(l);
        final long min = TimeUnit.MILLISECONDS.toMinutes(l - TimeUnit.HOURS.toMillis(hr));
        final long sec = TimeUnit.MILLISECONDS.toSeconds(l - TimeUnit.HOURS.toMillis(hr) - TimeUnit.MINUTES.toMillis(min));
        final long ms = TimeUnit.MILLISECONDS.toMillis(l - TimeUnit.HOURS.toMillis(hr) - TimeUnit.MINUTES.toMillis(min) - TimeUnit.SECONDS.toMillis(sec));
        return String.format("%02d:%02d:%02d.%03d", hr, min, sec, ms);
    }

    public static void main(final String[] args)
    {
        System.out.println(Long.parseLong(args[0]));
    }
}

The output will be formatted something like this

13:00:00.000
link|improve this answer
feedback

Here is what's going on. When you pass milliseconds, that number is relative to Jan 1st, 1970. When you pass 0, it takes that date and converts it to your local time zone. If you are in Central time then that happens to be 7PM. If you run this then it all makes sense.

new SimpleDateFormat().format(0) => 12/31/69 7:00 PM

Edit, I think what you want to do is get elapsed time. For this I recommend using JodaTime which already does this pretty well. You do something like

PeriodFormatter formatter = new PeriodFormatterBuilder()
    .appendHours()
    .appendSuffix(" hour", " hours")
    .appendSeparator(" and ")
    .appendMinutes()
    .appendSuffix(" minute", " minutes")
    .appendSeparator(" and ")
    .appendSeconds()
    .appendSuffix(" second", " seconds")
    .toFormatter();

String formattedText = formatter.print(new Period(elapsedMilliSeconds));
link|improve this answer
Daylight savings, so CDT, not EDT – Ed Staub Jul 15 '11 at 16:35
I agree, SimpleDateFormat is not designed to format elapsed time. Easier to write your own formatter or use the Joda formatter as you recommended. – Chris Jul 15 '11 at 17:10
feedback

The format happens according to your local timezone, so if you pass 0, it assumes 0 GMT and then converts it in your local timezone.

link|improve this answer
Yes, this is essentially what's going. – Amir Raminfar Jul 15 '11 at 16:32
feedback

This is the first bit of Joda work I've done where it seemed more tedious than the JDK support. A Joda implementation for the requested format (making a few assumptions about zero fields) is:

public void printDuration(long milliSecs)
{
    PeriodFormatter formatter = new PeriodFormatterBuilder()
        .printZeroIfSupported()
        .appendHours()
        .appendSeparator(":")
        .minimumPrintedDigits(2)
        .appendMinutes()
        .appendSeparator(":")
        .appendSecondsWithMillis()
        .toFormatter();

    System.out.println(formatter.print(new Period(milliSecs)));
}
link|improve this answer
feedback

Try to use uppercased 'H', so your format would be "HH:mm:ss.SSSS"

link|improve this answer
From the javadoc (SE6): h : Hour in am/pm (1-12) – bdares Jul 15 '11 at 16:24
Well, he wants the total number of hours, so he really does need H for Hour 1-24. – Aleks G Jul 15 '11 at 18:19
feedback

Your Answer

 
or
required, but never shown

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