[java] 밀리 초 단위의 타임 스탬프를 Java의 문자열 형식 시간으로 변환

긴 값 ( 1970 년 1 월 1 일에서 경과 한 밀리 초, 즉 Epoch )을 형식 시간으로 변환하려고 합니다 h:m:s:ms.

타임 스탬프로 사용하는 긴 값 timestamp은 log4j의 로깅 이벤트 필드에서 가져옵니다 .

지금까지 다음을 시도했지만 실패했습니다.

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

하지만 잘못된 값을 얻습니다.

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

어떻게해야합니까?



답변

이 시도:

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

클래스가 허용하는 다른 형식 문자열에 대한 설명은 SimpleDateFormat 을 참조하십시오 .

1200ms 입력을 사용하는 실행 가능한 예 를 참조하십시오 .


답변

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);


답변

(a) long 값에서 분 필드를 가져오고 (b) 원하는 날짜 형식을 사용하여 인쇄하는 세 가지 방법을 보여 드리겠습니다. 하나는 java.util.Calendar를 사용 하고 다른 하나는 Joda-Time을 사용하며 마지막은 Java 8 이상에 내장 된 java.time 프레임 워크를 사용합니다.

java.time 프레임 워크는 이전 번들 날짜-시간 클래스를 대체하며 JSR 310에 의해 정의되고 ThreeTen-Extra 프로젝트에 의해 확장 된 Joda-Time에서 영감을 받았습니다.

java.time 프레임 워크는 Java 8 이상을 사용할 때 사용하는 방법입니다. 그렇지 않으면 Android와 같이 Joda-Time을 사용하십시오. 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);

산출:

24
09 : 24 : 10 : 254
24
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 인스턴트 : 2010-11-10T07 : 46 : 13.771Z 출력 : 07 : 46 : 13 : 771


답변

Apache commons (commons-lang3) 및 DurationFormatUtils 클래스를 사용할 수 있습니다.

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

예를 들면 :

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"

도움이 되길 바랍니다 …


답변

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);


답변

하기

logEvent.timeStamp / (1000*60*60)

몇 분이 아닌 몇 시간을 줄 것입니다. 시험:

logEvent.timeStamp / (1000*60)

그리고 당신은 다음과 같은 답을 얻게 될 것입니다.

TimeUnit.MILLISECONDS.toMinutes(logEvent.timeStamp)