我正在使用USGS网站上的API.
"properties": {
"mag": 3.2,"place": "Puerto Rico region","time": 1164925597950,"updated": 1415323859614,"tz": null
}
时间以毫秒为单位.我想提取日期&时间(以毫秒为单位).如何在Kotlin中做到这一点?
我正在使用USGS网站上的API.
"properties": {
"mag": 3.2,"place": "Puerto Rico region","time": 1164925597950,"updated": 1415323859614,"tz": null
}
时间以毫秒为单位.我想提取日期&时间(以毫秒为单位).如何在Kotlin中做到这一点?
import java.text.SimpleDateFormat
import java.util.Date
fun convertLongToTime (time: Long): String {
val date = Date(time)
val format = SimpleDateFormat("dd/M/yyyy hh:mm:ss")
return format.format(date)
}
这将在Kotlin中起作用,您可以根据需要更改SimpleDataFormat中的格式.