kotlin中使用Date()获取yyyy-MM-dd HH:mm:ss格式的当前时间
时间: 2024-04-24 12:26:08 浏览: 465
在Kotlin中,可以使用`java.util.Date`类和`java.text.SimpleDateFormat`类来获取当前时间并将其格式化为"yyyy-MM-dd HH:mm:ss"格式。
```kotlin
import java.util.Date
import java.text.SimpleDateFormat
fun getCurrentDateTime(): String {
val currentDate = Date()
val dateFormat = SimpleDateFormat("yyyy-MM-dd HH:mm:ss")
return dateFormat.format(currentDate)
}
fun main() {
val currentDateTime = getCurrentDateTime()
println(currentDateTime)
}
```
这段代码定义了一个名为`getCurrentDateTime`的函数,它使用`Date()`创建一个表示当前时间的Date对象。然后,使用`SimpleDateFormat("yyyy-MM-dd HH:mm:ss")`创建一个格式化器,最后使用`dateFormat.format(currentDate)`将当前时间格式化为指定的格式。
在`main`函数中,你可以调用`getCurrentDateTime`函数来获取当前时间并打印输出。
运行这段代码,你将会得到当前时间的"yyyy-MM-dd HH:mm:ss"格式输出。请注意,`java.util.Date`类在Java 8及更高版本中已经过时,推荐使用`java.time`包中的新日期时间API。
阅读全文