How to get day month and year in kotlin

Code examples

0
0

how to get day month and year in kotlin

import java.time.LocalDateTime
import java.time.temporal.ChronoField;  

fun main() {
    
    val current = LocalDateTime.now()
    println(current) // 2021-12-24T13:15:28.602
    
    println("Today is: \n ${current.get(ChronoField.DAY_OF_MONTH)} \n Month: ${current.get(ChronoField.MONTH_OF_YEAR)} \n Year: ${current.get(ChronoField.YEAR)}")
    
  /*
   Today is: 24 
   Month: 12 
   Year: 2021
   
    */
    
}

Similar pages

Similar pages with examples

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................