In ambito GWT l’oggetto Calendar non è disponibile, pertanto non volendo usare il metodo deprecato getYear() dell’oggetto Date , è possibile ottenere l’anno corrente usando l’oggetto com.google.gwt.i18n.client.DateTimeFormat
1 2 3 |
Date today = new Date(); String format = DateTimeFormat.getFormat("yyyy").format(today); int annoCorrente = Integer.parseInt(format); |