将 2017-03-25T11:24:20 等日期转换为工作日
我有给定匹配格式的日期字符串:2017-03-25T11:24:20 或 2020-06-26T11:14:00
并且想使用 java 或 Kotlin 查找给定日期是一周中的哪一天
I have date strings in a given matching format: 2017-03-25T11:24:20 or 2020-06-26T11:14:00
and would like to find which day of the week is on a given date, usin java or Kotlin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将日期时间字符串解析为
LocalDateTime
对象并使用其getDayOfWeek()
方法 (doc) 查找星期几,它返回DayOfWeek
枚举(doc)。在 Kotlin 中,它看起来像在
DayOfWeek
枚举上,您可以使用getDisplayName(TextStyle style, Locale locale)
来获取本地化的文本表示形式,例如“Mon”或'Friday' 或getValue()
获取星期几 int 值。You can parse the datetime string to
LocalDateTime
object and use itsgetDayOfWeek()
method (doc) to find the day of week, which returns aDayOfWeek
enum (doc). In Kotlin, it would look likeOn the
DayOfWeek
enum, you could usegetDisplayName(TextStyle style, Locale locale)
to get a localized textual representation, such as 'Mon' or 'Friday', orgetValue()
to get the day-of-week int value.