문제:
밀리초를 날짜로 변환할 때 SimpleDateFormat을 사용하여 형식을 지정하면 프로그램은 기계의 날짜를 사용하므로 다른 시간대에서는 정확한 시간을 나타내지 않을 수 있습니다.
해결책:
이 문제를 처리하려면 우아하게 다음 접근 방식을 사용할 수 있습니다.
<code class="java">Date date = new Date(millis); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss,SSS", Locale.US); String formattedDate = sdf.format(date);</code>
Instant 및 ZonedDateTime 사용:
<code class="java">Instant instant = Instant.ofEpochMilli(millis); ZonedDateTime zonedDateTime = ZonedDateTime.ofInstant(instant, ZoneId.of("US/Central")); // Format the date DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss,SSS"); String formattedDate = zonedDateTime.format(formatter);</code>
LocalDateTime 사용:
<code class="java">LocalDateTime localDateTime = LocalDateTime.ofInstant(instant, ZoneId.of("US/Central")); // Format the date DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss,SSS"); String formattedDate = localDateTime.format(formatter);</code>
<code class="java">DateTime jodaTime = new DateTime(millis, DateTimeZone.forTimeZone(TimeZone.getTimeZone("US/Central"))); // Format the date DateTimeFormatter parser1 = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss,SSS"); String formattedDate = parser1.print(jodaTime);</code>
이러한 접근 방식을 사용하면 밀리초를 로케일의 날짜 형식으로 변환할 수 있습니다. 특정 방식으로 정확한 시간이 표시되도록 합니다.
위 내용은 currentTimeMillis를 로캘별 형식을 사용하여 날짜로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!