简体   繁体   English

将时间戳以毫秒为单位转换为 Java 中的字符串格式时间

[英]Convert timestamp in milliseconds to string formatted time in Java

I am trying to convert a long value ( number of milliseconds elapsed from 1/1/1970 ie Epoch ) to time of format h:m:s:ms .我正在尝试将 long 值(从 1/1/1970 即 Epoch 过去的毫秒数)转换为h:m:s:ms格式的时间。

The long value I use as timestamp, I get from the field timestamp of a logging event from log4j.我用作时间戳的长值,我从 log4j 的日志事件的字段timestamp中获取。

So far I've tried the following and it fails:到目前为止,我已经尝试了以下方法,但失败了:

logEvent.timeStamp/ (1000*60*60)
TimeUnit.MILLISECONDS.toMinutes(logEvent.timeStamp)

but I get incorrect value:但我得到了不正确的值:

1289375173771 for logEvent.timeStamp
358159  for logEvent.timeStamp/ (1000*60*60) 
21489586 for TimeUnit.MILLISECONDS.toMinutes(logEvent.timeStamp)

How do I go about this?我该怎么做?

Try this:尝试这个:

Date date = new Date(logEvent.timeSTamp);
DateFormat formatter = new SimpleDateFormat("HH:mm:ss.SSS");
formatter.setTimeZone(TimeZone.getTimeZone("UTC"));
String dateFormatted = formatter.format(date);

See SimpleDateFormat for a description of other format strings that the class accepts.有关该类接受的其他格式字符串的说明,请参阅SimpleDateFormat

See runnable example using input of 1200 ms.请参阅使用 1200 毫秒输入的可运行示例

long millis = durationInMillis % 1000;
long second = (durationInMillis / 1000) % 60;
long minute = (durationInMillis / (1000 * 60)) % 60;
long hour = (durationInMillis / (1000 * 60 * 60)) % 24;

String time = String.format("%02d:%02d:%02d.%d", hour, minute, second, millis);

I'll show you three ways to (a) get the minute field from a long value, and (b) print it using the Date format you want.我将向您展示三种方法来 (a) 从长值中获取分钟字段,以及 (b) 使用您想要的日期格式打印它。 One uses java.util.Calendar , another uses Joda-Time , and the last uses the java.time framework built into Java 8 and later.一个使用java.util.Calendar ,另一个使用Joda-Time ,最后一个使用 Java 8 及更高版本中内置的 java.time 框架。

The java.time framework supplants the old bundled date-time classes, and is inspired by Joda-Time, defined by JSR 310, and extended by the ThreeTen-Extra project. java.time 框架取代了旧的捆绑日期时间类,并受到 JSR 310 定义的 Joda-Time 的启发,并由 ThreeTen-Extra 项目扩展。

The java.time framework is the way to go when using Java 8 and later. java.time 框架是使用 Java 8 及更高版本时要走的路。 Otherwise, such as Android, use Joda-Time.否则,如Android,使用Joda-Time。 The java.util.Date/.Calendar classes are notoriously troublesome and should be avoided. java.util.Date/.Calendar 类是出了名的麻烦,应该避免。

java.util.Date & .Calendar java.util.Date & .Calendar

final long timestamp = new Date().getTime();

// with java.util.Date/Calendar api
final Calendar cal = Calendar.getInstance();
cal.setTimeInMillis(timestamp);
// here's how to get the minutes
final int minutes = cal.get(Calendar.MINUTE);
// and here's how to get the String representation
final String timeString =
    new SimpleDateFormat("HH:mm:ss:SSS").format(cal.getTime());
System.out.println(minutes);
System.out.println(timeString);

Joda-Time乔达时间

// with JodaTime 2.4
final DateTime dt = new DateTime(timestamp);
// here's how to get the minutes
final int minutes2 = dt.getMinuteOfHour();
// and here's how to get the String representation
final String timeString2 = dt.toString("HH:mm:ss:SSS");
System.out.println(minutes2);
System.out.println(timeString2);

Output:输出:

24 24
09:24:10:254 09:24:10:254
24 24
09:24:10:254 09:24:10:254

java.time时间

long millisecondsSinceEpoch = 1289375173771L;
Instant instant = Instant.ofEpochMilli ( millisecondsSinceEpoch );
ZonedDateTime zdt = ZonedDateTime.ofInstant ( instant , ZoneOffset.UTC );

DateTimeFormatter formatter = DateTimeFormatter.ofPattern ( "HH:mm:ss:SSS" );
String output = formatter.format ( zdt );

System.out.println ( "millisecondsSinceEpoch: " + millisecondsSinceEpoch + " instant: " + instant + " output: " + output );

millisecondsSinceEpoch: 1289375173771 instant: 2010-11-10T07:46:13.771Z output: 07:46:13:771毫秒自纪元:1289375173771 即时:2010-11-10T07:46:13.771Z 输出:07:46:13:771

It is possible to use apache commons (commons-lang3) and its DurationFormatUtils class.可以使用 apache commons (commons-lang3) 及其 DurationFormatUtils 类。

<dependency>
  <groupId>org.apache.commons</groupId>
  <artifactId>commons-lang3</artifactId>
  <version>3.1</version>
</dependency>

For example:例如:

String formattedDuration = DurationFormatUtils.formatDurationHMS(12313152);
// formattedDuration value is "3:25:13.152"
String otherFormattedDuration = DurationFormatUtils.formatDuration(12313152, DurationFormatUtils.ISO_EXTENDED_FORMAT_PATTERN);
// otherFormattedDuration value is "P0000Y0M0DT3H25M13.152S"

Hope it can help ...希望它可以帮助...

long second = TimeUnit.MILLISECONDS.toSeconds(millis);
long minute = TimeUnit.MILLISECONDS.toMinutes(millis);
long hour = TimeUnit.MILLISECONDS.toHours(millis);
millis -= TimeUnit.SECONDS.toMillis(second);
return String.format("%02d:%02d:%02d:%d", hour, minute, second, millis);
public static String timeDifference(long timeDifference1) {
long timeDifference = timeDifference1/1000;
int h = (int) (timeDifference / (3600));
int m = (int) ((timeDifference - (h * 3600)) / 60);
int s = (int) (timeDifference - (h * 3600) - m * 60);

return String.format("%02d:%02d:%02d", h,m,s);

Try this:尝试这个:

    String sMillis = "10997195233";
    double dMillis = 0;

    int days = 0;
    int hours = 0;
    int minutes = 0;
    int seconds = 0;
    int millis = 0;

    String sTime;

    try {
        dMillis = Double.parseDouble(sMillis);
    } catch (Exception e) {
        System.out.println(e.getMessage());
    }


    seconds = (int)(dMillis / 1000) % 60;
    millis = (int)(dMillis % 1000);

    if (seconds > 0) {
        minutes = (int)(dMillis / 1000 / 60) % 60;
        if (minutes > 0) {
            hours = (int)(dMillis / 1000 / 60 / 60) % 24;
            if (hours > 0) {
                days = (int)(dMillis / 1000 / 60 / 60 / 24);
                if (days > 0) {
                    sTime = days + " days " + hours + " hours " + minutes + " min " + seconds + " sec " + millis + " millisec";
                } else {
                    sTime = hours + " hours " + minutes + " min " + seconds + " sec " + millis + " millisec";
                }
            } else {
                sTime = minutes + " min " + seconds + " sec " + millis + " millisec";
            }
        } else {
            sTime = seconds + " sec " + millis + " millisec";
        }
    } else {
        sTime = dMillis + " millisec";
    }

    System.out.println("time: " + sTime);

Doing正在做

logEvent.timeStamp / (1000*60*60)

will give you hours, not minutes.会给你几个小时,而不是几分钟。 Try:尝试:

logEvent.timeStamp / (1000*60)

and you will end up with the same answer as你最终会得到相同的答案

TimeUnit.MILLISECONDS.toMinutes(logEvent.timeStamp)
long hours = TimeUnit.MILLISECONDS.toHours(timeInMilliseconds);
long minutes = TimeUnit.MILLISECONDS.toMinutes(timeInMilliseconds - TimeUnit.HOURS.toMillis(hours));
long seconds = TimeUnit.MILLISECONDS.toSeconds(timeInMilliseconds - TimeUnit.HOURS.toMillis(hours) - TimeUnit.MINUTES.toMillis(minutes));
long milliseconds = timeInMilliseconds - TimeUnit.HOURS.toMillis(hours) - TimeUnit.MINUTES.toMillis(minutes) - TimeUnit.SECONDS.toMillis(seconds);

return String.format("%02d:%02d:%02d:%d", hours, minutes, seconds, milliseconds);

I wanted to only show the relevant part of the time.我只想显示时间的相关部分。 So, always show seconds, but only show minutes/hours/days if there are any.所以,总是显示秒,但如果有的话,只显示分钟/小时/天。

Also, optionally show milliseconds.此外,还可以选择显示毫秒。

And I was using GWT, so I couldn't use String.format.而且我使用的是 GWT,所以我不能使用 String.format。

So, if this is you too, here is the code.所以,如果这也是你,这里是代码。

public static String formatTimeFromMs(long timeInMs, boolean showMs) {
    boolean negative = timeInMs < 0;

    timeInMs = Math.abs(timeInMs);

    StringBuffer result = new StringBuffer();
    long seconds = (timeInMs / 1000) % 60;
    long minutes = (timeInMs / (1000 * 60)) % 60;
    long hours = (timeInMs / (1000 * 60 * 60)) % 24;
    long days = (timeInMs / (1000 * 60 * 60 * 24));

    if (days > 0) {
        result.append(days + "d ");
    }
    
    if (hours > 0) {
        if (hours < 10 && result.length() > 0) {
            result.append("0");
        }
        result.append(hours + ":");
    }
    else if (result.length() > 0) {
        result.append("00:");
    }

    if (minutes > 0) {
        if (minutes < 10 && result.length() > 0) {
            result.append("0");
        }
        result.append(minutes + ":");
    }
    else if (result.length() > 0) {
        result.append("00:");
    }

    if (seconds > 0) {
        if (seconds < 10 && result.length() > 0) {
            result.append("0");
        }
        result.append(seconds);
    }
    else if (result.length() > 0) {
        result.append("00");
    }
    else {
        result.append("0");
    }

    if (showMs) {
        long millis = timeInMs % 1000;
        
        if (millis < 10) {
            result.append(".00" + millis);
        }
        else if (millis < 100) {
            result.append(".0" + millis);
        }
        else {
            result.append("." + millis);
        }
    }

    if (negative) {
        result.insert(0, "-");
    }

    return result.toString();
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM