kotlin中获取yyyy-MM-dd HH:mm:ss格式的当前时间
时间: 2024-04-24 15:26:08 浏览: 100
在Kotlin中,你可以使用`java.time`包中的`LocalDateTime`类来获取当前时间,并使用`DateTimeFormatter`类来格式化时间。
首先,确保你的项目已经导入了`java.time`包。在Kotlin中,你可以使用以下代码获取当前时间并格式化为"yyyy-MM-dd HH:mm:ss"格式:
```kotlin
import java.time.LocalDateTime
import java.time.format.DateTimeFormatter
fun getCurrentDateTime(): String {
val currentDateTime = LocalDateTime.now()
val formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")
return currentDateTime.format(formatter)
}
fun main() {
val currentDateTime = getCurrentDateTime()
println(currentDateTime)
}
```
这段代码定义了一个名为`getCurrentDateTime`的函数,它使用`LocalDateTime.now()`获取当前时间,然后使用`DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")`创建一个格式化器,最后使用`currentDateTime.format(formatter)`将当前时间格式化为指定的格式。
在`main`函数中,你可以调用`getCurrentDateTime`函数来获取当前时间并打印输出。
运行这段代码,你将会得到当前时间的"yyyy-MM-dd HH:mm:ss"格式输出。
阅读全文