I am working on a Java application and I have the following problem trying to format a date.
So I inizialize an object field with a new java.util.Date; that represent the current date time, this one:
progetto.setDatOraUltMov(new Date());
When I print this field the result is somethind like this:
Mon Oct 12 17:19:06 CEST 2015
Ok, this standard is not good for my pourpose and I want that is shown something like this:
12/10/2015 17:19:06
Something like in the format DAY/MONTH/YEAR HOUR:MINUTE:SECOND
How can I do something like this? How can I specify the required date format?