How to format date and time in Android?

前端 未结 24 1293
面向向阳花
面向向阳花 2020-11-22 00:51

How to format correctly according to the device configuration date and time when having a year, month, day, hour and minute?

24条回答
  •  情深已故
    2020-11-22 01:21

    SimpleDateFormat

    I use SimpleDateFormat without custom pattern to get actual date and time from the system in the device's preselected format:

    public static String getFormattedDate() {
        //SimpleDateFormat called without pattern
        return new SimpleDateFormat().format(Calendar.getInstance().getTime());
    }
    

    returns:

    • 13.01.15 11:45
    • 1/13/15 10:45 AM
    • ...

提交回复
热议问题