public int obtenerMes(Date date){
if (null == date){
return 0;
}
else{
formato="MM";
SimpleDateFormat dateFormat = new SimpleDateFormat(formato);
return Integer.parseInt(dateFormat.format(date));
}
}
if (null == date){
return 0;
}
else{
formato="MM";
SimpleDateFormat dateFormat = new SimpleDateFormat(formato);
return Integer.parseInt(dateFormat.format(date));
}
}