gpt4 book ai didi

date - 获取本周第一天和当前时间 JDK 8 之间的时间范围

转载 作者:行者123 更新时间:2023-12-01 11:19:21 33 4
gpt4 key购买 nike

我可以很容易地计算出一个月的第一天和当前时间之间的时间段:

/**
* Returns the time range between the first day of month and current time in milliseconds.
*
* @param zoneId time zone ID.
* @return a {@code long} array, where at index: 0 - the first day of month midnight time; 1 - current time.
*/

public static long[] monthDateRange(ZoneId zoneId) {
long[] toReturn = new long[2];

ZonedDateTime nowZdt = LocalDateTime.now().atZone(zoneId);
ZonedDateTime startZdt = nowZdt.withDayOfMonth(1);
toReturn[0] = startZdt.toInstant().toEpochMilli();
toReturn[1] = nowZdt.toInstant().toEpochMilli();
return toReturn;
}

但是如何从本周的第一天(午夜)开始计数呢?

最佳答案

tl;dr

ZonedDateTime
.now( ZoneId.of( "Asia/Kolkata" ) ) // Current moment in a particular time zone.
.toLocalDate() // Extract date-only value, losing the time-of-day and time zone components.
.with( TemporalAdjusters.previousOrSame( DayOfWeek.SUNDAY ) ) // Move to another day-of-week, or same date if this is the desired day-of-week.
.atStartOfDay( ZoneId.of( "Asia/Kolkata" ) ) // Determine the first moment of the day. Do *not* assume this time-of-day is 00:00:00 as anomalies such as Daylight Saving Time (DST) may mean otherwise such as 01:00:00.
.toInstant() // Adjust into UTC, same moment, same point on the timeline, but viewed through the lens of UTC time zone.
.toEpochMilli() // Extract a count-from-epoch in milliseconds. I do *not* recommend tracking date-time this way, but the Question requires this number.

详情

Answer by Gruodis很好,但这里有一个更直接和灵活的替代方案。

获取当前时刻作为 ZonedDateTime

ZoneId z = ZoneId.of( "Pacific/Auckland" ) ;
ZonedDateTime now = ZonedDateTime.now( z ) ;

时间调整器

TemporalAdjuster 接口(interface)允许您操作日期时间值以获得新的日期时间值。 TemporalAdjusters 类(注意复数 s)提供了几个方便的实现。使用 DayOfWeek枚举以指定您认为哪一天是一周的第一天。

DayOfWeek dowStartOfWeek = DayOfWeek.MONDAY ; 
LocalDate weekStartDate = now.toLocalDate().with( TemporalAdjusters.previousOrSame( DayOfWeek.MONDAY ) ) ;
ZonedDateTime start = weekStartDate.atStartOfDay( z ) ; // Determine first moment of the day. Note: *not* always 00:00:00.

查看此 code run live at IdeOne.com .

2017-08-21T00:00+12:00[Pacific/Auckland] 2017-08-21T08:44:46.439+12:00[Pacific/Auckland]

时间跨度

为了报告您的时间跨度,如果需要,pou 确实可以提取整秒的计数。

long epochSeconds = start.toEpochSecond() ; 

或通过 Instant 提取毫秒.

long epochMillis = start.toInstant().toEpochMilli() ;

但请记住,这两个数字都会截断任何进一步的小数秒,因为 java.time 类型解析为 nanoseconds .

除了截断之外,还有其他原因可以避免将日期时间跟踪为 count-from-epoch .由于这些值对人眼来说毫无意义,因此调试要困难得多,错误的数据可能不会引起您的注意。此外,您可以假设纪元是 1970-01-01T00:00:00Z,但至少有 another couple dozen epochs由通用软件系统使用。另一个问题是计数粒度的模糊性,其中一些系统使用整秒,其他系统使用毫秒,其他系统使用微秒,其他系统使用纳秒,还有一些系统使用其他分辨率。

间隔

因此,我建议不要只返回 long 整数,而是返回一个对象。一对 Instant 对象起作用,这就是 Interval 使用的对象ThreeTen-Extra 中的类项目。该类有几个非常方便的方法,我希望调用代码可能会发现有用的方法,例如 containsenclosesabutsoverlapsspanisEmpty 等。

org.threeten.extra.Interval interval = Interval.of( start.toInstant() , now.toInstant() ) ;

您可以应用时区以通过区域自己的挂钟时间的镜头查看开始或结束。

ZonedDateTime zdtStart = interval.getStart().atZone( z );  // Or `getEnd()`.

关于date - 获取本周第一天和当前时间 JDK 8 之间的时间范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45784857/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com