我想以这种格式解析这个日期 2021-11-03T14:09:31.135Z (
message.created_at
)
My code is this:
val dateFormat = SimpleDateFormat("yyyy-MM-dd hh:mm:ss.SSS")
var convertedDate = Date()
try {
convertedDate = dateFormat.parse(message.created_at)
} catch (e: ParseException) {
e.printStackTrace()
它未能解析出