Time processing gets UTC time

Source: Internet
Author: User
Tags time zones

In the work process encountered time processing problems, because the need to unify the time processing in UTC time processing, therefore, can not simply run through the system directly to get the time of the milliseconds, so that the values in different time zones will be different.

Importjava.text.ParseException;ImportJava.text.SimpleDateFormat;ImportJava.util.Calendar;Importjava.util.Date;ImportJava.util.TimeZone; Public classTimeutil {Private Final StaticString mintue = "YYYYMMDDHHMM";  Public StaticString Getutctime (String datestr)throwsparseexception {simpledateformat sdf=NewSimpleDateFormat (mintue); Date Date=Sdf.parse (DATESTR); Calendar Calendar=calendar.getinstance ();        Calendar.settime (date); //Method 1: Calculate the time difference directly to get UTC time        LongUNIXTIMEGMT = Calendar.gettimeinmillis ()-Timezone.getdefault (). Getrawoffset ();        System.out.println (UNIXTIMEGMT); //Method 2: Calculate the UTC time by obtaining the time zone offset and the summer seasonal offset        intTimeZone =Calendar.get (Calendar.zone_offset);        System.out.println (TimeZone); intDST =Calendar.get (Calendar.dst_offset);        System.out.println (DST); Calendar.add (Calendar.millisecond,-(TimeZone +DST));        System.out.println (Calendar.gettimeinmillis ()); return""; }}

Time processing gets UTC time

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.