我想将dd / mm / yyyy格式的日期转换为UTC格式yyyy-MM-ddTHH:mm:ssZ。谁能告诉我如何在角度6中做到这一点?
我尝试使用Date getUTCDate()方法,但是没有运气
this.date = new Date(newSearchData.beginDateUPD);
newSearchData.beginDateUPD = this.date.getUTCDate();
如果我的日期是2019年8月2日(即2019年2月8日),则输出应为2019-02-07T18:30:00.000Z
答案 0 :(得分:0)
您可以通过提供输入格式和输出格式来完成此操作
fun getMyDate(date: String?, outputFormat: String?, inputFormat: String?): String {
try {
val simpleDateFormat = SimpleDateFormat(inputFormat, Locale.getDefault())
simpleDateFormat.timeZone = TimeZone.getTimeZone("UTC")
return SimpleDateFormat(outputFormat, Locale(mAppLanguage)).format(simpleDateFormat.parse(date))
} catch (e: ParseException) {
e.printStackTrace()
} catch (ex: NullPointerException) {
ex.printStackTrace()
}
return ""
}
现在叫这个
getMydate("YOUR DATE IN STRING","yyyy-MM-dd'T'HH:mm:ss.SSS'Z'","dd/MM/yyyy")
根据需要删除UTC