How do I change date time format in Android?

前端 未结 10 1897
故里飘歌
故里飘歌 2020-11-29 07:19

I am displaying the date and time in Android with this format:
2013-06-18 12:41:24

How can I change it to the following format?
18-j

10条回答
  •  南笙
    南笙 (楼主)
    2020-11-29 07:52

    Use this code like below:

    SimpleDateFormat formatter = new SimpleDateFormat("dd-MMM-yyyy hh:mm a");
    String date = formatter.format(Date.parse("Your date string"));
    

    Hope it will help you.

提交回复
热议问题