util.time 中的時間協助程式 - AWS AppSync

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

util.time 中的時間協助程式

util.time 變數包含日期時間方法,可協助產生時間戳記、在日期時間格式之間轉換,以及剖析日期時間字串。日期時間格式的語法是以您可以參考DateTimeFormatter的 為基礎,以取得進一步的文件。

util.time.nowISO8601()

傳回 UTC ISO8601 格式的字串表示法。

util.time.nowEpochSeconds()

傳回從 1970-01-01T00:00:00Z 的 epoch 到現在的秒數。

util.time.nowEpochMilliSeconds()

傳回從 1970-01-01T00:00:00Z 的 epoch 到現在的毫秒數。

util.time.nowFormatted(String)

UTC 使用字串輸入類型的指定格式,傳回 中目前時間戳記的字串。

util.time.nowFormatted(String, String)

使用字串輸入類型的指定格式和時區,傳回時區目前時間戳記的字串。

util.time.parseFormattedToEpochMilliSeconds(String, String)

剖析以字串形式傳遞的時間戳記以及格式,然後將時間戳記傳回為自 epoch 以來的毫秒數。

util.time.parseFormattedToEpochMilliSeconds(String, String, String)

剖析以字串形式傳遞的時間戳記,以及格式和時區,然後將時間戳記傳回為自 epoch 以來的毫秒數。

util.time.parseISO8601ToEpochMilliSeconds(String)

剖析以字串形式傳遞的 ISO8601 時間戳記,然後將時間戳記傳回為自 epoch 以來的毫秒數。

util.time.epochMilliSecondsToSeconds(long)

將 epoch 毫秒時間戳記轉換為 epoch 秒時間戳記。

util.time.epochMilliSecondsToISO8601(long)

將 epoch 毫秒時間戳記轉換為 ISO8601 時間戳記。

util.time.epochMilliSecondsToFormatted(long, String)

將 epoch 毫秒時間戳記轉換為根據 中提供的格式格式化的時間戳記。 UTC

util.time.epochMilliSecondsToFormatted(long, String, String)

將長傳遞的 epoch 毫秒時間戳記轉換為根據所提供時區中提供的格式格式化的時間戳記。