Android Utililty Methods UTC Get

List of utility methods to do UTC Get

Description

The list of methods to do UTC Get are organized into topic(s).

Method

longnowUTC()
now UTC
Calendar calendar = Calendar.getInstance();
TimeZone timeZone = calendar.getTimeZone();
long currentTime = System.currentTimeMillis();
int offsetWithUTC = timeZone.getOffset(currentTime);
long utcTime = currentTime - offsetWithUTC;
return utcTime;
StringnowUTCString()
now UTC String
Calendar calendar = Calendar.getInstance();
TimeZone timeZone = calendar.getTimeZone();
long currentTime = System.currentTimeMillis();
int offsetWithUTC = timeZone.getOffset(currentTime);
long utcTime = currentTime - offsetWithUTC;
Date now = new Date(utcTime);
SimpleDateFormat df = new SimpleDateFormat();
return df.format(now);
...