Format date in Java

后端 未结 4 835
醉酒成梦
醉酒成梦 2020-12-19 15:10

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

4条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-19 16:06

    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.

提交回复
热议问题