Unix timestamp para date

Pessoal,

Não consigo encontrar uma forma de converter unix timestamp para date.

Alguem sabe como?

Olhando um pouco o Javadoc ajuda.

public Date(long date)

Allocates a Date object and initializes it to represent the specified number of milliseconds since the standard base time known as "the epoch", namely January 1, 1970, 00:00:00 GMT.

Parameters:
    date - the milliseconds since January 1, 1970, 00:00:00 GMT.

Como o Unix timestamp é o número de segundos (não milissegundos) desde 1/1/1970, é só multiplicar por 1000L.

obrigado :slight_smile: