I’ve found myself working on some old JSP and want to do something simple like display today’s date in dd/mm/yyyy format
Doesn’t seem to be that simple,
So far I’ve imported java.util.*
And I’ve tried various things like
String df = new SimpleDateFormat("dd/MM/yy");
However, to no avail…
You can use this:
and then use some of the Calendar fields as needed, e.g.:
To follow your original idea, I think you should do something like: