如何在Java中获取UTC或GMT中的当前日期和时间?

时间:2008-11-21 13:02:17

标签: java date localization timezone gmt

当我创建一个新的Date对象时,它会初始化为当前时间但在本地时区。如何获得GMT中的当前日期和时间?

31 个答案:

答案 0 :(得分:376)

java.util.Date没有特定的时区,尽管其值通常与UTC相关。是什么让你觉得它是在当地时间?

准确地说:java.util.Date内的值是自1970年1月1日午夜发布的Unix纪元以来的毫秒数。同一时期也可以在其他时区描述,但传统的描述是以UTC的形式。由于它是固定时期以来的毫秒数,因此无论当地时区如何,java.util.Date内的值在任何特定时刻都是相同的。

我怀疑问题是你通过使用本地时区的Calendar实例显示它,或者可能使用Date.toString()同时使用本地时区或SimpleDateFormat实例默认情况下,也使用本地时区。

如果这不是问题,请发布一些示例代码。

但是,无论如何,我建议您使用Joda-Time,这样可以提供更清晰的API。

答案 1 :(得分:267)

SimpleDateFormat dateFormatGmt = new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss");
dateFormatGmt.setTimeZone(TimeZone.getTimeZone("GMT"));

//Local time zone   
SimpleDateFormat dateFormatLocal = new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss");

//Time in GMT
return dateFormatLocal.parse( dateFormatGmt.format(new Date()) );

答案 2 :(得分:234)

TL;博士

Instant.now()   // Capture the current moment in UTC. 

生成一个String来表示该值:

Instant.now().toString()  
  

2016-09-13T23:30:52.123Z

详细

the correct answer by Jon Skeet所述,java.util.Date对象具有无时区 。但是,当生成该日期时间值的String表示时,其toString实现应用JVM的默认时区。令天真的程序员感到困惑的是,日期似乎有时区但没有。

与Java捆绑在一起的java.util.Datej.u.Calendarjava.text.SimpleDateFormat类非常麻烦。 避免它们。而是使用这些主管日期时间库中的任何一个:

java.time(Java 8)

Java 8带来了一个很好的新java.time.* package来取代旧的java.util.Date/Calendar类。

以UTC / GMT获取当前时间是一个简单的单行...

Instant instant = Instant.now();

Instant类是java.time中的基本构建块,代表UTC中时间轴上具有分辨率nanoseconds的时刻。

在Java 8中,当前时刻仅以毫秒分辨率捕获。 Java 9 brings a fresh implementation Clock one specific ISO 8601 format捕获当前时刻,达到本课程的全纳秒级能力,具体取决于主机时钟硬件的能力。

它的toString方法使用milliseconds生成其值的String表示。该格式根据需要输出零,三,六或九位数字(microsecondsnanosecondsZoneOffset.UTC constant)来表示秒数。

如果您想要更灵活的格式或其他附加功能,请为UTC本身(OffsetDateTime)应用UTC的偏移量为零,以获得JSR 310

OffsetDateTime now = OffsetDateTime.now( ZoneOffset.UTC );

转储到控制台...

System.out.println( "now: " + now );

跑步时......

now: 2014-01-21T23:42:03.522Z

Table of types of date-time classes in modern java.time versus legacy.

java.time类由Joda-Time定义。他们受到Joda-Time的启发,但完全重新设计。

约达时间

更新:现在位于maintenance modejava.time项目建议迁移到Joda-Time类。

使用my answer第三方开源免费资源库,您只需一行代码即可获得当前日期时间。

Joda-Time启发了Java 8中新的java.time。*类,但具有不同的架构。您可以在旧版本的Java中使用Joda-Time。 Joda-Time继续在Java 8中工作并继续积极维护(截至2014年)。但是,Joda-Time团队确实建议迁移到java.time。

System.out.println( "UTC/GMT date-time in ISO 8601 format: " + new org.joda.time.DateTime( org.joda.time.DateTimeZone.UTC ) );

更详细的示例代码(Joda-Time 2.3)......

org.joda.time.DateTime now = new org.joda.time.DateTime(); // Default time zone.
org.joda.time.DateTime zulu = now.toDateTime( org.joda.time.DateTimeZone.UTC );

转储到控制台...

System.out.println( "Local time in ISO 8601 format: " + now );
System.out.println( "Same moment in UTC (Zulu): " + zulu );

跑步时......

Local time in ISO 8601 format: 2014-01-21T15:34:29.933-08:00
Same moment in UTC (Zulu): 2014-01-21T23:34:29.933Z

有关执行时区工作的更多示例代码,请参阅DateTimeZone以查找类似问题。

时区

我建议您始终指定一个时区,而不是隐式依赖JVM的当前默认时区(可以随时更改!)。这种依赖似乎是造成日期工作混乱和错误的常见原因。

当呼叫now()时,要传递所需/预期的时区。使用constant for UTC类。

DateTimeZone zoneMontréal = DateTimeZone.forID( "America/Montreal" );
DateTime now = DateTime.now( zoneMontréal );

该班级拥有ISO 8601时区。

DateTime now = DateTime.now( DateTimeZone.UTC );

如果您确实想要使用JVM的当前默认时区,请进行显式调用,以便您的代码可以自我记录。

DateTimeZone zoneDefault = DateTimeZone.getDefault();

ISO 8601

了解{{3}}格式。 java.time和Joda-Time都使用该标准的敏感格式作为解析和生成字符串的默认格式。


实际上,java.util.Date 确实有一个时区,深埋在源代码层之下。对于大多数实际目的,该时区被忽略。所以,作为简写,我们说java.util.Date没有时区。此外,埋藏时区是Date toString方法使用的时区;该方法使用JVM的当前默认时区。更有理由避免这种令人困惑的类并坚持使用Joda-Time和java.time。

答案 3 :(得分:83)

这肯定会返回UTC时间:作为String和Date对象!

static final String DATE_FORMAT = "yyyy-MM-dd HH:mm:ss";

public static Date getUTCdatetimeAsDate() {
    // note: doesn't check for null
    return stringDateToDate(getUTCdatetimeAsString());
}

public static String getUTCdatetimeAsString() {
    final SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT);
    sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
    final String utcTime = sdf.format(new Date());

    return utcTime;
}

public static Date stringDateToDate(String StrDate) {
    Date dateToReturn = null;
    SimpleDateFormat dateFormat = new SimpleDateFormat(DATEFORMAT);

    try {
        dateToReturn = (Date)dateFormat.parse(StrDate);
    }
    catch (ParseException e) {
        e.printStackTrace();
    }

    return dateToReturn;
}

答案 4 :(得分:65)

    Calendar c = Calendar.getInstance();
    System.out.println("current: "+c.getTime());

    TimeZone z = c.getTimeZone();
    int offset = z.getRawOffset();
    if(z.inDaylightTime(new Date())){
        offset = offset + z.getDSTSavings();
    }
    int offsetHrs = offset / 1000 / 60 / 60;
    int offsetMins = offset / 1000 / 60 % 60;

    System.out.println("offset: " + offsetHrs);
    System.out.println("offset: " + offsetMins);

    c.add(Calendar.HOUR_OF_DAY, (-offsetHrs));
    c.add(Calendar.MINUTE, (-offsetMins));

    System.out.println("GMT Time: "+c.getTime());

答案 5 :(得分:49)

实际上不是时间,但它的表现可以改变。

SimpleDateFormat f = new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss");
f.setTimeZone(TimeZone.getTimeZone("UTC"));
System.out.println(f.format(new Date()));

地球的任何一点的时间都是一样的,但我们对时间的看法可能因地点而异。

答案 6 :(得分:17)

  

日历aGMTCalendar = Calendar.getInstance(TimeZone.getTimeZone(“GMT”));   然后,使用aGMTCalendar对象执行的所有操作都将使用GMT时区完成,并且不会应用夏令时或固定偏移

错!

Calendar aGMTCalendar = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
aGMTCalendar.getTime(); //or getTimeInMillis()

Calendar aNotGMTCalendar = Calendar.getInstance(TimeZone.getTimeZone("GMT-2"));aNotGMTCalendar.getTime();

将同时返回。同意

new Date(); //it's not GMT.

答案 7 :(得分:16)

此代码打印当前时间UTC。

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;


public class Test
{
    public static void main(final String[] args) throws ParseException
    {
        final SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z");
        f.setTimeZone(TimeZone.getTimeZone("UTC"));
        System.out.println(f.format(new Date()));
    }
}

结果

2013-10-26 14:37:48 UTC

答案 8 :(得分:13)

这适用于在Android中获取UTC毫秒。

Calendar c = Calendar.getInstance();
int utcOffset = c.get(Calendar.ZONE_OFFSET) + c.get(Calendar.DST_OFFSET);  
Long utcMilliseconds = c.getTimeInMillis() + utcOffset;

答案 9 :(得分:10)

以下是Jon Skeet's answer中似乎不正确的内容。他说:

  

java.util.Date始终为UTC。是什么让你觉得它在当地   时间?我怀疑问题是你是通过一个显示它   使用本地时区或可能使用的Calendar的实例   Date.toString()也使用当地时区。

然而,代码:

System.out.println(new java.util.Date().getHours() + " hours");

给出当地时间,而不是GMT(UTC时间),根本不使用Calendar而不是SimpleDateFormat

这就是看起来有些不正确的原因。

汇总回复,代码:

System.out.println(Calendar.getInstance(TimeZone.getTimeZone("GMT"))
                           .get(Calendar.HOUR_OF_DAY) + " Hours");

显示格林尼治标准时间而不是当地时间 - 请注意getTime.getHours()缺失,因为这会创建一个Date()对象,理论上会将日期存储在GMT中,但会返回当地时区。

答案 10 :(得分:7)

如果您希望Date对象的字段调整为UTC,您可以使用Joda Time执行此操作:

import org.joda.time.DateTimeZone;
import java.util.Date;

...

Date local = new Date();
System.out.println("Local: " + local);
DateTimeZone zone = DateTimeZone.getDefault();
long utc = zone.convertLocalToUTC(local.getTime(), false);
System.out.println("UTC: " + new Date(utc));

答案 11 :(得分:6)

您可以使用:

Calendar aGMTCalendar = Calendar.getInstance(TimeZone.getTimeZone("GMT"));

然后,使用aGMTCalendar对象执行的所有操作都将使用GMT时区完成,并且不会应用夏令时或固定偏移。我认为上一张海报是正确的,Date()对象总是返回一个GMT,直到你对日期对象做一些转换为本地时区的事情。

答案 12 :(得分:6)

SimpleDateFormat dateFormatGmt = new SimpleDateFormat("yyyy-MM-dd");
dateFormatGmt.setTimeZone(TimeZone.getTimeZone("GMT"));
System.out.println(dateFormatGmt.format(date));

答案 13 :(得分:6)

您可以直接使用此

SimpleDateFormat dateFormatGmt = new SimpleDateFormat("dd:MM:yyyy HH:mm:ss");
dateFormatGmt.setTimeZone(TimeZone.getTimeZone("GMT"));
System.out.println(dateFormatGmt.format(new Date())+"");

答案 14 :(得分:5)

使用:

Calendar cal = Calendar.getInstance();

然后cal有当前日期和时间 您还可以使用以下命令获取时区的当前日期和时间:

Calendar cal2 = Calendar.getInstance(TimeZone.getTimeZone("GMT-2"));

您可以询问cal.get(Calendar.DATE);或其他日历常数,了解其他详细信息 Java中不推荐使用日期和时间戳。日历类不是。

答案 15 :(得分:5)

以下是另一种以字符串格式获取GMT时间的方法

String DATE_FORMAT = "EEE, dd MMM yyyy HH:mm:ss z" ;
final SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT);
sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
String dateTimeString =  sdf.format(new Date());

答案 16 :(得分:5)

这是另一个获取GMT时间戳对象的建议:

import java.sql.Timestamp;
import java.util.Calendar;

...

private static Timestamp getGMT() {
   Calendar cal = Calendar.getInstance();
   return new Timestamp(cal.getTimeInMillis()
                       -cal.get(Calendar.ZONE_OFFSET)
                       -cal.get(Calendar.DST_OFFSET));
}

答案 17 :(得分:3)

为了简化这一点,要在Date中创建UTC,您可以使用Calendar

Calendar.getInstance(TimeZone.getTimeZone("UTC"));

将使用“UTC”CalendarTimeZone构建新实例。

如果您需要该日历中的Date对象,则可以使用getTime()

答案 18 :(得分:3)

以特定时区和特定格式呈现系统时间的示例代码。

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;

public class TimZoneTest {
    public static void main (String[] args){
        //<GMT><+/-><hour>:<minutes>
        // Any screw up in this format, timezone defaults to GMT QUIETLY. So test your format a few times.

        System.out.println(my_time_in("GMT-5:00", "MM/dd/yyyy HH:mm:ss") );
        System.out.println(my_time_in("GMT+5:30", "'at' HH:mm a z 'on' MM/dd/yyyy"));

        System.out.println("---------------------------------------------");
        // Alternate format 
        System.out.println(my_time_in("America/Los_Angeles", "'at' HH:mm a z 'on' MM/dd/yyyy") );
        System.out.println(my_time_in("America/Buenos_Aires", "'at' HH:mm a z 'on' MM/dd/yyyy") );


    }

    public static String my_time_in(String target_time_zone, String format){
        TimeZone tz = TimeZone.getTimeZone(target_time_zone);
        Date date = Calendar.getInstance().getTime();
        SimpleDateFormat date_format_gmt = new SimpleDateFormat(format);
        date_format_gmt.setTimeZone(tz);
        return date_format_gmt.format(date);
    }

}

输出

10/08/2011 21:07:21
at 07:37 AM GMT+05:30 on 10/09/2011
at 19:07 PM PDT on 10/08/2011
at 23:07 PM ART on 10/08/2011

答案 19 :(得分:3)

以UTC格式转换当前日期时间

DateTimeFormatter formatter = DateTimeFormat.forPattern("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");

DateTimeZone dateTimeZone = DateTimeZone.getDefault(); //Default Time Zone

DateTime currDateTime = new DateTime(); //Current DateTime

long utcTime = dateTimeZone.convertLocalToUTC(currDateTime .getMillis(), false);

String currTime = formatter.print(utcTime); //UTC time converted to string from long in format of formatter

currDateTime = formatter.parseDateTime(currTime); //Converted to DateTime in UTC

答案 20 :(得分:3)

这是我对toUTC的实现:

    public static Date toUTC(Date date){
    long datems = date.getTime();
    long timezoneoffset = TimeZone.getDefault().getOffset(datems);
    datems -= timezoneoffset;
    return new Date(datems);
}

可能有几种方法可以改进它,但它对我有用。

答案 21 :(得分:2)

这对我有用,返回GMT的时间戳!

    Date currDate;
    SimpleDateFormat dateFormatGmt = new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss");
    dateFormatGmt.setTimeZone(TimeZone.getTimeZone("GMT"));
    SimpleDateFormat dateFormatLocal = new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss");

    long currTime = 0;
    try {

        currDate = dateFormatLocal.parse( dateFormatGmt.format(new Date()) );
        currTime = currDate.getTime();
    } catch (ParseException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

答案 22 :(得分:2)

使用此类从在线NTP服务器获得正确的UTC时间:

import java.net.DatagramPacket;
import java.net.DatagramSocket;
import java.net.InetAddress;


class NTP_UTC_Time
{
private static final String TAG = "SntpClient";

private static final int RECEIVE_TIME_OFFSET = 32;
private static final int TRANSMIT_TIME_OFFSET = 40;
private static final int NTP_PACKET_SIZE = 48;

private static final int NTP_PORT = 123;
private static final int NTP_MODE_CLIENT = 3;
private static final int NTP_VERSION = 3;

// Number of seconds between Jan 1, 1900 and Jan 1, 1970
// 70 years plus 17 leap days
private static final long OFFSET_1900_TO_1970 = ((365L * 70L) + 17L) * 24L * 60L * 60L;

private long mNtpTime;

public boolean requestTime(String host, int timeout) {
    try {
        DatagramSocket socket = new DatagramSocket();
        socket.setSoTimeout(timeout);
        InetAddress address = InetAddress.getByName(host);
        byte[] buffer = new byte[NTP_PACKET_SIZE];
        DatagramPacket request = new DatagramPacket(buffer, buffer.length, address, NTP_PORT);

        buffer[0] = NTP_MODE_CLIENT | (NTP_VERSION << 3);

        writeTimeStamp(buffer, TRANSMIT_TIME_OFFSET);

        socket.send(request);

        // read the response
        DatagramPacket response = new DatagramPacket(buffer, buffer.length);
        socket.receive(response);          
        socket.close();

        mNtpTime = readTimeStamp(buffer, RECEIVE_TIME_OFFSET);            
    } catch (Exception e) {
      //  if (Config.LOGD) Log.d(TAG, "request time failed: " + e);
        return false;
    }

    return true;
}


public long getNtpTime() {
    return mNtpTime;
}


/**
 * Reads an unsigned 32 bit big endian number from the given offset in the buffer.
 */
private long read32(byte[] buffer, int offset) {
    byte b0 = buffer[offset];
    byte b1 = buffer[offset+1];
    byte b2 = buffer[offset+2];
    byte b3 = buffer[offset+3];

    // convert signed bytes to unsigned values
    int i0 = ((b0 & 0x80) == 0x80 ? (b0 & 0x7F) + 0x80 : b0);
    int i1 = ((b1 & 0x80) == 0x80 ? (b1 & 0x7F) + 0x80 : b1);
    int i2 = ((b2 & 0x80) == 0x80 ? (b2 & 0x7F) + 0x80 : b2);
    int i3 = ((b3 & 0x80) == 0x80 ? (b3 & 0x7F) + 0x80 : b3);

    return ((long)i0 << 24) + ((long)i1 << 16) + ((long)i2 << 8) + (long)i3;
}

/**
 * Reads the NTP time stamp at the given offset in the buffer and returns 
 * it as a system time (milliseconds since January 1, 1970).
 */    
private long readTimeStamp(byte[] buffer, int offset) {
    long seconds = read32(buffer, offset);
    long fraction = read32(buffer, offset + 4);
    return ((seconds - OFFSET_1900_TO_1970) * 1000) + ((fraction * 1000L) / 0x100000000L);        
}

/**
 * Writes 0 as NTP starttime stamp in the buffer. --> Then NTP returns Time OFFSET since 1900
 */    
private void writeTimeStamp(byte[] buffer, int offset) {        
    int ofs =  offset++;

    for (int i=ofs;i<(ofs+8);i++)
      buffer[i] = (byte)(0);             
}

}

并将其用于:

        long now = 0;

        NTP_UTC_Time client = new NTP_UTC_Time();

        if (client.requestTime("pool.ntp.org", 2000)) {              
          now = client.getNtpTime();
        }

如果您需要UTC时间“现在”作为DateTimeString使用函数:

private String get_UTC_Datetime_from_timestamp(long timeStamp){

    try{

        Calendar cal = Calendar.getInstance();
        TimeZone tz = cal.getTimeZone();

        int tzt = tz.getOffset(System.currentTimeMillis());

        timeStamp -= tzt;

        // DateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss",Locale.getDefault());
        DateFormat sdf = new SimpleDateFormat();
        Date netDate = (new Date(timeStamp));
        return sdf.format(netDate);
    }
    catch(Exception ex){
        return "";
     }
    } 

并将其用于:

String UTC_DateTime = get_UTC_Datetime_from_timestamp(now);

答案 23 :(得分:2)

public static void main(String args[]){
    LocalDate date=LocalDate.now();  
    System.out.println("Current date = "+date);
}

答案 24 :(得分:1)

说实话。日历对象存储有关时区的信息,但是当您执行cal.getTime()时,时区信息将丢失。因此,对于Timezone转换,我建议使用DateFormat类...

答案 25 :(得分:1)

这是我的实施:

public static String GetCurrentTimeStamp()
{
    Calendar cal=Calendar.getInstance();
    long offset = cal.getTimeZone().getOffset(System.currentTimeMillis());//if you want in UTC else remove it .
    return new java.sql.Timestamp(System.currentTimeMillis()+offset).toString();    
}

答案 26 :(得分:1)

如果您想避免解析日期而只想在GMT中添加时间戳,可以使用:

final Date gmt = new Timestamp(System.currentTimeMillis()
            - Calendar.getInstance().getTimeZone()
                    .getOffset(System.currentTimeMillis()));

答案 27 :(得分:0)

如果您正在使用joda时间并希望当前时间以毫秒而没有本地偏移量,则可以使用:

long instant = DateTimeZone.UTC.getMillisKeepLocal(DateTimeZone.getDefault(), System.currentTimeMillis());

答案 28 :(得分:0)

public class CurrentUtcDate 
{
    public static void main(String[] args) {
        Date date = new Date();
        SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss");
        dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
        System.out.println("UTC Time is: " + dateFormat.format(date));
    }
}

输出:

UTC Time is: 22-01-2018 13:14:35

您可以根据需要更改日期格式。

答案 29 :(得分:0)

使用java.time程序包并包含以下代码-

ZonedDateTime now = ZonedDateTime.now( ZoneOffset.UTC );

LocalDateTime now2 = LocalDateTime.now( ZoneOffset.UTC );

取决于您的应用程序需求。

答案 30 :(得分:0)

UTC当前日期

Instant.now().toString().replaceAll("T.*", "");