Hello,
I'm trying to get the currentime in millis as per GMT timezone.
GregorianCalendar c = new GregorianCalendar(TimeZone.getTimeZone("GMT"));
java.util.Date d = c.getTime();
timeNow = new Timestamp(d.getTime());
This is just one of the attempts. Could someone point me out with code, without having to use Joda Library?