-3

I desire to format date string ex.Jul1,201512: 00: 00AM to date in format 'dd/MM/yyyy'. If any one knows is please share the solution with me

Pramil
  • 227
  • 4
  • 17
  • You need to parse date. And then format it. In which step you having troubles? And show us what you have tried. – talex Jul 28 '15 at 11:24

1 Answers1

1

Use a SimpleDateFormat to parse your original string and then another one to format it into the desired format.

Florian Schaetz
  • 10,454
  • 5
  • 32
  • 58