Ragazzi, tutto chiaro, c'è solo qualcosa che non va.
Uso la seguente funzione:
codice:
static public String getFormattedDateNew(java.util.Date date) throws ParseException
  {
	if (date==null)
	  return "";
	else
	{
	  String formato = "dd/mm/yyyy"; 		
	  SimpleDateFormat formatter = new SimpleDateFormat(formato,Locale.ITALY);
	  return formatter.format(date);
	}
  }
Però mi ritorna la data anzichè 01/06/2004 --> 01/00/2004
Ma io nel DB come mese, ho 06, perchè? :master: