時間テキスト表示のサンプル

public class TimeFormat {
  public static void main(String[] args) {
    Time times = new Time(3257824428000L);
    SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
    System.out.println(sdf.format(times));
  }
}

処理結果

16:13:48