25/09/2008, 14:35
|
| | Fecha de Ingreso: julio-2008
Mensajes: 66
Antigüedad: 16 años, 5 meses Puntos: 0 | |
Respuesta: Restar dias a una fecha Ya logre solucionar el problema con:
Calendar cal = new GregorianCalendar();
cal.setTimeInMillis(hoy.getTime());
cal.add(Calendar.DATE, -(Integer)session.getAttribute("Fecha"));
String FechaSem = formato.format(cal.getTimeInMillis());
Mil gracias de todas maneras GreenEyed |