本文介绍了将日期插入时代时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我对约会有点困惑.我目前正在使用气象应用程序,并且一切正常..我只是想将这种类型的格式处理成我自己想要的格式.
I am little bit confused in dates. I am currently working on the weather app and everything works fine .. I just wanna handle this type of format into my own desirable format.
2017-09-10T18:35:00+05:00
我只是想将此日期转换为大纪元时间,然后以所需的格式结算日期::
I just wanna convert this date into Epoch Time and then I settle the date in my desire format ::
J-SON
或者我想将此日期转换为更少的数字,例如9月9日,星期日,上午9:23,等等.
or i wanna convert this date into less figure i.e Sun , 9 september 9:23 Am etc.
推荐答案
使用SimpleDateFormat
实例将字符串解析为Date
对象:
Use a SimpleDateFormat
instance to parse the string into a Date
object:
DateFormat parser = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssX");
Date date = parser.parse("2017-09-10T18:35:00+05:00");
然后使用另一个SimpleDateFormat进行显示:
And then use another SimpleDateFormat to display it:
DateFormat format = new SimpleDateFormat("EEE, dd MMMMM h:mm a");
String formatted = format.format(date); // Sun, 10 September 1:35 PM
这篇关于将日期插入时代时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!