Clojure ISO 8601当前日期和clj时间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Clojure ISO 8601当前日期和clj时间相关的知识,希望对你有一定的参考价值。
Better way of generating date in ISO 8601 format (e.g. "2011-12-12T20:50:22+0100").Needs to require [clj-time.core :as time] and [clj-time.format :as time-format].
(defn- get-current-iso-8601-date "Returns current ISO 8601 compliant date." [] (let [current-date-time (time/to-time-zone (time/now) (time/default-time-zone))] (time-format/unparse (time-format/with-zone (time-format/formatters :date-time-no-ms) (.getZone current-date-time)) current-date-time)))
以上是关于Clojure ISO 8601当前日期和clj时间的主要内容,如果未能解决你的问题,请参考以下文章
将 ISO 8601 日期时间字符串转换为 **Date** 对象时,如何将日期时间重新定位到当前时区?
一种将当前日期时间转换为 ISO 8601 格式的优雅方法 [重复]