How to get the current date and time with milliseconds accuracy in Kotlin

1 Answer

0 votes
import java.time.LocalDateTime
import java.time.format.DateTimeFormatter

fun main() {
    val now = LocalDateTime.now()
    
    val formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS")
    
    val formattedDateTime = now.format(formatter)

    println(formattedDateTime)
}


 
/*
run:
 
2024-12-07 07:49:08.176
 
*/

 



answered Dec 7, 2024 by avibootz
...