Получить текущую дату и время в формате по умолчанию
Kotlin
xxxxxxxxxx
import java.time.LocalDateTime
fun main(args: Array<String>) {
val current = LocalDateTime.now()
println("Current Date and Time is: $current")
}
Current Date and Time is: 2017-08-02T11:25:44.973
Получить текущую дату и время с шаблоном
Kotlin
xxxxxxxxxx
import java.time.LocalDateTime
import java.time.format.DateTimeFormatter
fun main(args: Array<String>) {
val current = LocalDateTime.now()
val formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS")
val formatted = current.format(formatter)
println("Current Date and Time is: $formatted")
}
Current Date and Time is: 2017-08-02 11:29:57.401
Получить текущую дату, используя предопределенные константы
Kotlin
xxxxxxxxxx
import java.time.LocalDateTime
import java.time.format.DateTimeFormatter
fun main(args: Array<String>) {
val current = LocalDateTime.now()
val formatter = DateTimeFormatter.BASIC_ISO_DATE
val formatted = current.format(formatter)
println("Current Date is: $formatted")
}
Current Date is: 20170802
Получить текущую дату и время в локализованном стиле
Kotlin
xxxxxxxxxx
import java.time.LocalDateTime
import java.time.format.DateTimeFormatter
import java.time.format.FormatStyle
fun main(args: Array<String>) {
val current = LocalDateTime.now()
val formatter = DateTimeFormatter.ofLocalizedDateTime(FormatStyle.MEDIUM)
val formatted = current.format(formatter)
println("Current Date is: $formatted")
}
Current Date is: Aug 2, 2017 11:44:19 AM
Linux - Как установить anc-api-tools
Linux - Как установить curvedns
Linux - Как установить zenmap
Python - Проверьте, является ли число положительным, отрицательным или 0
C++ - Проверить, является ли число простым или нет
JavaScript - Проверьте, начинается ли строка и заканчивается ли она определенными символами
C - Подсчитать количество цифр в целом числе
Kotlin - Перевернуть число
C++ - Проверить високосный год
Linux - Как установить zfs-test
Linux - Как установить zstd
C - Найдите наибольшее число, используя динамическое выделение памяти
Java - Перевернуть число
GoLang - Кодировка Base64
Kotlin - Найти факториал числа
C++ - Найти частное и остаток
Kotlin - Округлить число до n знаков после запятой
PHP - Массив в порядке убывания
We have been online since 2021 and 1 millions of people around the globe have visited our website since then
More visitors every month