Java 中的日期格式
我有以下字符串:
Mon Sep 14 15:24:40 UTC 2009
我需要将其格式化为这样的字符串:
14/9/2009
如何在 Java 中做到这一点?
I have the following string:
Mon Sep 14 15:24:40 UTC 2009
I need to format it into a string like this:
14/9/2009
How do I do it in Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
SimpleDateFormat
(单击 javadoc 链接查看模式)将一种模式中的字符串解析为完整的Date
并使用另一个将解析的Date
格式化为另一种模式的字符串。Use
SimpleDateFormat
(click the javadoc link to see patterns) to parse the string in one pattern to a fullworthyDate
and use another one to format the parsedDate
to a string in another pattern.您可以使用 SimpleDateFormat 类将您拥有的字符串转换为日期对象。日期格式可以在构造函数中给出。 format 方法将字符串转换为日期对象。
获取日期对象后,您可以按照您想要的方式格式化它。
You can use SimpleDateFormat class to convert the string you have to a date object. The date format can be given in the constructor. The format method converts the string to a date object.
After getting the date object, you can format it in the way you want.
java 8 及以上版本中的一个衬垫。
One liner in java 8 and above.