I've a date object that returns a calendar.getTime() date.
However, this date is formatted like this:
("dd/MM/time/yyyy")
i want to get rid of that time and still keep the date as a date since I need the DATE type for the rest of my application to run correctly. I want it to show as
("dd/MM/yyy")
how can I do this? the other answers I have seen all require you to change it to a string. is it possible to put it to as string and then back to a date with no time?