Beispiel, wenn Datum 06 ist 07 2016
SimpleDateFormat sdf= new SimpleDateFormat("dd MM yyyy");
Sie Komma, Hand verwenden können, Schrägstrich oder Bindestrich zwischen diesem Format.
Ex: dd-mm-yyyy, it will display like(06-07-2016)
dd/mm/yyyy,it will display like(06/07/2016)
dd.mm.yyyy,it will display like(06.07.2016)
dd,mm,yyyy ,it will display like(06,07,2016)
MM - will display number of the Month.
MMM - will display Month Three character only(Ex: Jul)
MMMM - will display full month(Ex: July)
yyyy - will display full year(2016)
yy - will display last two digits(16)
hh - will display hours
mm -will display minutes
ss - will display seconds
a - will display AM or PM
Ex: if time is 12:09:10 PM means (hh:mm:ss a)
EEE- will display short week name(Ex: Wed)
EEEE- will display full week name(Ex: Wednesday)
Beachten Sie, dass Sie "mm" zweimal, einmal pro Monat und einmal pro Minute haben. – ColinD