Hi,
all you need is this:
long timemil = 1155000000000; //your millis value
Date date = new Date(timemil);
date.toString(); //returns date in classic GMT format
JoYiCk
Known bug with forum software: the "L" at the end of a long doesn't show up within code tags. If you put *two* L's at the end of the long, then one L will show up.
One L:
long num = 15823059823;
Two Ls:
long num = 15823059823L;