I have a string in the following format 2017-12-08
, however I need to display it formatted for the user as follows: 08/12/2017
, I thought about using SimpleDateFormat
variable is in Date
format, and I am not consequently converting that String
to Date
.
How could I do this, or is there any way to format this string to be displayed the way I need the user?