Android get Current UTC time

134,290

System.currentTimeMillis() does give you the number of milliseconds since January 1, 1970 00:00:00 UTC. The reason you see local times might be because you convert a Date instance to a string before using it. You can use DateFormats to convert Dates to Strings in any timezone:

DateFormat df = DateFormat.getTimeInstance();
df.setTimeZone(TimeZone.getTimeZone("gmt"));
String gmtTime = df.format(new Date());

Also see this related question.

Share:
134,290

Related videos on Youtube

Gerardo
Author by

Gerardo

Updated on July 05, 2022

Comments

  • Gerardo
    Gerardo almost 2 years

    What is the function to get the current UTC time. I have tried with System.getCurrentTime but i get the current date and time of the device.

    Thanks

    • Hyndrix
      Hyndrix almost 6 years
      Why not just use new Date(System.currentTimeMillis())?
  • Ersin Gulbahar
    Ersin Gulbahar about 10 years
    I want to user UTC+2 , how can I do tht
  • Muhammad Babar
    Muhammad Babar over 9 years
    new Date() will return the current system date! if user changes the time/date it will return wrong values!
  • Rohit Lalwani
    Rohit Lalwani over 4 years
    val c = Calendar.getInstance() c.timeZone = TimeZone.getTimeZone("UTC") c.add(Calendar.HOUR, 2)