目前,我正在寻找能够提供人性化日期的功能。
timestamp X may represent 6am in Country A, and 11pm in Country B
timestamp Y may represent 8am in Country A, and 2am in Country B
已关闭但不完全符合我的要求。
这是因为我需要处理多个国家的日期/时间。
例如,
For timezone in Country A, it should yield "today".
For timezone in Country B, it should yield "yesterday".
所以,如果我使用时间戳Y作为现在并将时间戳X用作时间,
DateUtils.getRelativeTimeSpanString
task runThis(type:JavaExec) {
doSomething()
}
但是不接受时区。是否有任何等效的lib或函数可以通过接受时区来做类似的事情?