The measure is in thousandths of a second.
Looking at that expression, you can see they were originally days * 24
and not 2
.
date.setTime(date.getTime()+(days*24*60*60*1000));
└─────┬──────┘ └┬─┘└┬┘└┬┘└┬┘└─┬─┘
│ │ │ │ │ └─ x 1000 transforma segundos em milisegundos
│ │ │ │ └───── x 60 transforma minutos em segundos
│ │ │ └──────── x 60 transforma horas em minutos
│ │ └─────────── x 24 transforma dias em horas
│ └─────────────── quantidade especificada em dias
└────────────────────────── contados desde a data atual
For five minutes, this would be it:
date.setTime(date.getTime()+(5*60*1000));
Thank you very much :)
– user60953