How to format date and time in Android?

前端 未结 24 1599
面向向阳花
面向向阳花 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:04

    Date to Locale date string:

    Date date = new Date();
    String stringDate = DateFormat.getDateTimeInstance().format(date);
    

    Options:

       DateFormat.getDateInstance() 
    

    - > Dec 31, 1969

       DateFormat.getDateTimeInstance() 
    

    -> Dec 31, 1969 4:00:00 PM

       DateFormat.getTimeInstance() 
    

    -> 4:00:00 PM

提交回复
热议问题