kotlin获取当前时间
时间: 2023-11-08 20:06:04 浏览: 345
获取系统当前时间日期
在 Kotlin 中获取当前时间可以使用 `LocalDateTime.now()` 方法,示例代码如下:
```kotlin
import java.time.LocalDateTime
fun main() {
val currentDateTime = LocalDateTime.now()
println("Current Date and Time: $currentDateTime")
}
```
输出结果类似于:`Current Date and Time: 2021-10-20T16:30:45.123456`
阅读全文