Ver Mensaje Individual
  #6 (permalink)  
Antiguo 09/02/2006, 01:08
GreenEyed
 
Fecha de Ingreso: octubre-2003
Mensajes: 3.578
Antigüedad: 21 años, 3 meses
Puntos: 51
Pues no se lo que estarás haciendo, pero esto:
Código:
  public static void main(String[] args) throws InterruptedException
  {
    Date initDate = new Date();
    Thread.sleep(60000);
    Date endDate = new Date();
    System.err.println("Diferencia en ms.: "
        + (endDate.getTime() - initDate.getTime()));
  }
A mi me devuelve aproximadamente 60.000, despues de tirarse un minuto.