Ricerca…
introduzione
Questo documento riguarda come manipolare la data e l'ora in clojure.
Per utilizzarlo nella tua applicazione, vai al tuo file project.clj e includi [clj-time "<version_number>"] nella tua sezione: dependencies.
Creare un tempo Joda
(clj-time/date-time 2017 1 20)
Ti dà un tempo Joda del 20 gennaio 2017 alle 00:00:00.
Ore, minuti e secondi possono anche essere specificati come
(clj-time/date-time year month date hour minute second millisecond)
Ottenere giorno mese anno ora minuto secondo dall'ora della data
(require '[clj-time.core :as t])
(def example-time (t/date-time 2016 12 5 4 3 27 456))
(t/year example-time) ;; 2016
(t/month example-time) ;; 12
(t/day example-time) ;; 5
(t/hour example-time) ;; 4
(t/minute example-time) ;; 3
(t/second example-time) ;; 27
Confronto tra due date
(require '[clj-time.core :as t])
(def date1 (t/date-time 2016 12 5))
(def date2 (t/date-time 2016 12 6))
(t/equal? date1 date2) ;; false
(t/equal? date1 date1) ;; true
(t/before? date1 date2) ;; true
(t/before? date2 date1) ;; false
(t/after? date1 date2) ;; false
(t/after? date2 date1) ;; true
Controllare se un tempo è all'interno di un intervallo di tempo
Questa funzione indica se un dato tempo si trova all'interno di un dato intervallo di tempo.
(require '[clj-time.core :as t])
(def date1 (t/date-time 2016 11 5))
(def date2 (t/date-time 2016 12 5))
(def test-date1 (t/date-time 2016 12 20))
(def test-date2 (t/date-time 2016 11 15))
(t/within? (t/interval date1 date2) test-date1) ;; false
(t/within? (t/interval date1 date2) test-date2) ;; true
La funzione intervallo è utilizzata è esclusiva , il che significa che non include il secondo argomento della funzione nell'intervallo. Come esempio:
(t/within? (t/interval date1 date2) date2) ;; false
(t/within? (t/interval date1 date2) date1) ;; true
Aggiunta di data e ora joda da altri tipi di orario
La libreria clj-time.coerce può aiutare a convertire altri formati di data e ora in formato joda time (clj-time.core / date-time). Gli altri formati includono Java long format, String , Date , SQL Date .
Per convertire il tempo da altri formati temporali, includere la libreria e utilizzare la funzione da, ad es
(require '[clj-time.coerce :as c])
(def string-time "1990-01-29")
(def epoch-time 633571200)
(def long-time 633551400)
(c/from-string string-time) ;; #<DateTime 1990-01-29T00:00:00.000Z>
(c/from-epoch epoch-time) ;; #<DateTime 1990-01-29T00:00:00.000Z>
(c/from-long 633551400) ;; #<DateTime 1990-01-29T00:00:00.000Z>
Aggiunta di data e ora ad altre date
cljs-time ci dà l'opzione di aggiungere / sottrarre date-time ad altre date-time. I tempi di data aggiunti sottratti dovrebbero essere in forma di giorni, mesi, anni, ore ecc.
(require '[clj-time.core :as t])
(def example-date (t/date-time 2016 1 1)) ;; #<DateTime 2016-01-01T00:00:00.000Z>
;; Addition
(t/plus example-date (t/months 1)) ;; #<DateTime 2016-02-01T00:00:00.000Z>
(t/plus example-date (t/years 1)) ;; #<DateTime 2017-01-01T00:00:00.000Z>
;; Subtraction
(t/minus example-date (t/days 1)) ;; #<DateTime 2015-12-31T00:00:00.000Z>
(t/minus example-date (t/hours 12)) ;; #<DateTime 2015-12-31T12:00:00.000Z>