Kotlin从日期中提取时间



我有一个这样格式的日期:2027-02-14T14:20:00.000

我想把它缩短几小时和几分钟,就像那样:14:20

我想做这样的事情:

val firstDate = SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.US).parse("2027-02-14T14:20:00.000")
val firstTime = SimpleDateFormat("H:mm").format(firstDate)

但是我崩溃了java.text.ParseException: Unparseable date

如何从字符串中取出小时和分钟?

推荐的方法之一

如果您可以使用java.time,这里有一个注释示例:

import java.time.LocalDateTime
import java.time.LocalDate
import java.time.format.DateTimeFormatter
fun main() {
// example String
val input = "2027-02-14T14:20:00.000"
// directly parse it to a LocalDateTime
val localDateTime = LocalDateTime.parse(input)
// print the (intermediate!) result
println(localDateTime.format(DateTimeFormatter.ISO_LOCAL_DATE_TIME))
// then extract the date part
val localDate = localDateTime.toLocalDate()
// print that
println(localDate)
}

输出2个值,解析的中间LocalDateTime和提取的LocalDate(后者只是隐式调用其toString()方法):

2027-02-14T14:20:00
2027-02-14

不推荐,但仍有可能:

仍然使用过时的API(当涉及到大量遗留代码时可能是必要的,我怀疑您会发现这些代码是用Kotlin编写的):

import java.text.SimpleDateFormat
fun main() {
val firstDate = SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS")
.parse("2027-02-14T14:20:00.000")
val firstTime = SimpleDateFormat("yyyy-MM-dd").format(firstDate)
println(firstTime)
}

输出:

2027-02-14

你可以这样做:

val date = SimpleDateFormat("dd/MM/yyyy",Locale.getDefault()).format(Date())

相关内容

  • 没有找到相关文章