user605158
user605158

Reputation: 21

Android Date Format Help

Hi guys i am using a simple code to get current date and change its format but i am unable to do so every time i use the SimpleDateFormat class the application crashes with out being executed.

I am pasting my code here:

    Date d=new Date();
  SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/YYYY",Locale.ENGLISH);
  String newd= formatter.format(d);

can some body point out my mistake that i am making here??

Thank you in advance for your help!!

Upvotes: 0

Views: 295

Answers (1)

Jigar Joshi
Jigar Joshi

Reputation: 240996

YYYY should be yyyy

Upvotes: 3

Related Questions