1
I own a string in the following format 2017-12-08
, but need to display it formatted for the user as follows: 08/12/2017
, I thought I’d use the SimpleDateFormat
but for this I need the variable to be in the format Date
, and I am not therefore converting that String
in Date
.
How could I do that, or is there some way to format this string to be displayed the way I need to to the user?