get an specific calendar year java code example
Example 1: java get current year
import java.util.Calendar;
int year = Calendar.getInstance().get(Calendar.YEAR);
Example 2: java get year
import java.time.ZoneId;
import java.util.Date;
new Date().toInstant().atZone(ZoneId.systemDefault()).toLocalDate().getYear();