ciao andbin

ho risolto in un metodo molto grossolano , posto il codice:

codice:
String datx="12/05/2010";
String[] dat = datx.split("/");
int giorno=Integer.parseInt(dat[0]);
int mese=Integer.parseInt(dat[1]);
int anno=Integer.parseInt(dat[2]);
Date dd = new Date(anno-1900,mese-1,giorno);
			
DateTime date = new DateTime(0, i,dd, dateFormat);
sheet.addCell(date);