java中如何转换日期
我是安卓新手。 我必须将以下日期转换为这个时间戳(Wed Oct 12 14:17:42 GMT+05:30 2011
)
Thu, 27 May 2010 12:37:27 GMT
这是我通过标头从服务器获取的日期。我已将其转换为 String 对象。现在我必须将其转换为日期格式,例如: Wed Oct 12 14:17:42 GMT+05:30 2011
请您帮我如何将其转换为 (Wed Oct 12 14:17:42 GMT+05:30 2011
) 这种格式使用时间戳。
I am new in android .
I have to convert following date into this time stamp (Wed Oct 12 14:17:42 GMT+05:30 2011
)
Thu, 27 May 2010 12:37:27 GMT
This is the date that I am getting from the server through the header. I have converted it into the String object. Now I have to convert it into the Date format like: Wed Oct 12 14:17:42 GMT+05:30 2011
Please could you help me how should I convert it into the (Wed Oct 12 14:17:42 GMT+05:30 2011
) this format using timestamp.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看提供
parse()
和format()
方法的DateFormat
或SimpleDateFormat
。DateFormat
提供了一系列标准格式,而SimpleDateFormat
允许您提供自己的格式表达式。输入日期的示例:
编辑:如果您想要更可用的 API,请尝试 JodaTime。
Have a look at
DateFormat
orSimpleDateFormat
which provideparse()
andformat()
methods.DateFormat
provides a bunch of standard formats whereasSimpleDateFormat
allows you to provide your own format expression.Example for your input date:
Edit: If you want a more usable API, try JodaTime.