当地日期和;时间到UTC然后UTC到本地日期和;时间

时间:2012-11-09 12:02:59

标签: java android

我正在尝试将区域设置时间转换为UTC,然后将UTC转换为区域设置时间。但我没有得到结果。

public class DateDemo
{

public static void main(String args[])
{
    DateFormat dateFormatter = 
               DateFormat.getDateTimeInstance
                 (DateFormat.SHORT, DateFormat.SHORT, Locale.getDefault());

    TimeZone.setDefault(TimeZone.getDefault());

    SimpleDateFormat simpleDateFormatter = new SimpleDateFormat("dd/MM/yyyy");
    SimpleDateFormat simpleTimeFormatter = new SimpleDateFormat("hh:mm:ss a");

    Date today = new Date();
    String localeFormattedInTime = dateFormatter.format(today);

    try
    {
        Date parsedDate = dateFormatter.parse(localeFormattedInTime);
        System.out.println("Locale:" + localeFormattedInTime);
        System.out.println("After parsing a date: " + parsedDate);

        simpleDateFormatter.setTimeZone(TimeZone.getDefault());
        simpleTimeFormatter.setTimeZone(TimeZone.getDefault());

        String date = simpleDateFormatter.format(today);
        String time = simpleTimeFormatter.format(today);
        System.out.println("Today's only date: " + date);
        System.out.println("Today's only time: " + time);

        //// Locale to UTC converting

        simpleDateFormatter.setTimeZone(TimeZone.getTimeZone("UTC"));
        simpleTimeFormatter.setTimeZone(TimeZone.getTimeZone("UTC"));

        String utcDate = simpleDateFormatter.format(today);
        String utcTime = simpleTimeFormatter.format(today);
        System.out.println("Convert into UTC's date: " + utcDate);
        System.out.println("Convert into UTC's only time: " + utcTime);

         //// UTC to locale converting

        simpleDateFormatter.setTimeZone(TimeZone.getDefault());
        simpleTimeFormatter.setTimeZone(TimeZone.getDefault());

        Date getDate = simpleDateFormatter.parse(utcDate);
        Date getTime = simpleTimeFormatter.parse(utcTime);

        String getLocalDate = simpleDateFormatter.format(getDate);
        String getLocalTime = simpleTimeFormatter.format(getTime);
        System.out.println("Get local date: " + getLocalDate);
        System.out.println("Get local time: " + getLocalTime);

    } catch (ParseException e) {
        e.printStackTrace();
    }
  }
 }

我发送本地日期&到Web服务的时间,然后在需要时我需要检索UTC日期&时间然后转换为区域设置日期&时间(即用户的本地设置)。

示例输出:

Locale:11/9/12 8:15 PM
After parsing a date: Fri Nov 09 20:15:00 SGT 2012
Today's only date: 09/11/2012
Today's only time: 08:15:30 PM
Convert into UTC's date: 09/11/2012
Convert into UTC's only time: 12:15:30 PM
Get local date: 09/11/2012
Get local time: 12:15:30 PM

Saksak& ADTC回答:

对于代码片段,UTC日期&时间(实际上是什么 GMT-5 ,因为数据库可能在美国)是输入,我想得到本地日期&时间作为输出。但是接下来的部分仍然是 GMT-5 时间。

SimpleDateFormat simpleDateTimeFormatter = new SimpleDateFormat("dd/MM/yyyy hh:mm:ss a");

....

Date inDateTime = simpleDateTimeFormatter.parse(intent.getExtras().getString("inTime")); Date outDateTime = simpleDateTimeFormatter.parse(intent.getExtras().getString("outTime"));

simpleDateTimeFormatter.setTimeZone(TimeZone.getDefault()); simpleDateTimeFormatter.setTimeZone(simpleDateTimeFormatter.getTimeZone());

//TimeZone tzTimeZone = TimeZone.getDefault();

//System.out.println("Current time zone: " + tzTimeZone.getDisplayName());

String getLocalInTimeString = simpleDateTimeFormatter.format(inDateTime); 

String getLocalOutTimeString = simpleDateTimeFormatter.format(outDateTime);

我的问题:getLocalInTimeString& getLocalOutTimeString仍显示 GMT-5 时间。这有什么不对?我需要设置其他任何东西吗?

2 个答案:

答案 0 :(得分:4)

你的问题在第54和55行:

    Date getDate = simpleDateFormatter.parse(utcDate);
    Date getTime = simpleTimeFormatter.parse(utcTime);

这些行只是解析包含日期和时间的字符串,但这些字符串没有任何时区信息:

    utcDate = "09/11/2012"
    utcTime = "12:15:30 PM"

因此,解析器假定字符串已经在您在第51和52行中设置的时区的区域设置中。

现在考虑如何修复它;)提示:确保解析器假定字符串所代表的时间的正确时区。

PS:[已解决!] 我解决了问题,但我发现时区转换不稳定,至少在我的位置。时间是{{1}本地的。转换为UTC,8:30 pm(正确,8小时差异)。转换回来,它是12:30 pm(错误,虽然设置的时区是正确的 - 我得到了原来的那个并将其传回 - 我只得到7.5小时的差异)。 你应该寻找更可靠的方法,除非你能弄清楚发生了什么以及如何解决它。

[决议:] 上面的问题实际上是因为原始代码将日期和时间分成两个不同的解析器。如果您只使用一个解析器来同时处理日期和时间,那么您将在目标语言环境中获得正确的日期和时间。总而言之,解析器 可靠,但你使用它的方式有很大的不同!

8:00 pm

为什么在日期和时间使用两个独立的参与者是不可靠的:
如上所述,对日期和时间部分使用两个单独的解析器是个坏主意。原因如下:

    SimpleDateFormat simpleDateTimeFormatter
            = new SimpleDateFormat("dd/MM/yyyy hh:mm:ss a");
    Date getDateTime
            = simpleDateTimeFormatter.parse(utcDate + " " + utcTime);
    //use above line if you have the date and time as separate strings
    simpleDateTimeFormatter.setTimeZone(TimeZone.getDefault());
    String getLocalDateTime = simpleDateTimeFormatter.format(getDateTime);
    System.out.println("Get local date time: " + getLocalDateTime);

我得到半小时差异,因为默认日期 Date getDate = simpleDateFormatter.parse(utcDate); Date getTime = simpleTimeFormatter.parse(utcTime); //Time zone changed to local here String getLocalDate2 = simpleDateTimeFormatter.format(getDate); String getLocalTime2 = simpleDateTimeFormatter.format(getTime); System.out.println("Get local date2: " + getLocalDate2); System.out.println("Get local time2: " + getLocalTime2); OUTPUT: Get local date2: 10/11/2012 08:00:00 AM Get local time2: 01/01/1970 10:35:10 AM 用于01/01/1970变量存储时间(第二行)。当转换为本地时区时,错误发生在格式化程序将其转换基于默认日期Date where I live,时间差为1970年<7.5小时 - 今天,它是+8小时)。这就是为什么即使你得到了正确的结果,两个单独的解析器也不可靠,你必须始终使用一个接受日期和时间信息的组合解析器。

答案 1 :(得分:4)

您需要做的是解决您的问题,您需要按照以下顺序将代码转换回本地时间:

simpleDateFormatter.setTimeZone(TimeZone.getDefault());
simpleTimeFormatter.setTimeZone(TimeZone.getDefault());

Date getDate = simpleDateFormatter.parse(utcDate);
Date getTime = simpleTimeFormatter.parse(utcTime);

你需要做的就是等到你解析utcDate,utcTime Strings回到Date Object 然后将日期格式化程序时区设置为本地区域,如下所示:

Date getDate = simpleDateFormatter.parse(utcDate);
Date getTime = simpleTimeFormatter.parse(utcTime);

simpleDateFormatter.setTimeZone(TimeZone.getDefault());
simpleTimeFormatter.setTimeZone(TimeZone.getDefault());

这应该在本地打印正确的日期/时间。

编辑: 这是完整的主要方法:

public static void main(String[] args) {
    DateFormat dateFormatter = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT, Locale.getDefault());
    TimeZone.setDefault(TimeZone.getDefault());
    SimpleDateFormat simpleDateFormatter = new SimpleDateFormat("dd/MM/yyyy");
    SimpleDateFormat simpleTimeFormatter = new SimpleDateFormat("hh:mm:ss a");
    Date today = new Date();
    String localeFormattedInTime = dateFormatter.format(today);
    try {
        Date parsedDate = dateFormatter.parse(localeFormattedInTime);
        System.out.println("Locale:" + localeFormattedInTime);
        System.out.println("After parsing a date: " + parsedDate);

        simpleDateFormatter.setTimeZone(TimeZone.getDefault());
        simpleTimeFormatter.setTimeZone(TimeZone.getDefault());

        String date = simpleDateFormatter.format(today);
        String time = simpleTimeFormatter.format(today);
        System.out.println("Today's only date: " + date);
        System.out.println("Today's only time: " + time);

        //// Locale to UTC converting

        System.out.println("TimeZone.getDefault() >>> " + TimeZone.getDefault());

        simpleDateFormatter.setTimeZone(TimeZone.getTimeZone("UTC"));
        simpleTimeFormatter.setTimeZone(TimeZone.getTimeZone("UTC"));

        String utcDate = simpleDateFormatter.format(today);
        String utcTime = simpleTimeFormatter.format(today);
        System.out.println("Convert into UTC's date: " + utcDate);
        System.out.println("Convert into UTC's only time: " + utcTime);

        //// UTC to locale converting
        /**
         ** //////EDIT
        */
        // at this point your utcDate,utcTime are strings that are formated in UTC
        // so first you need to parse them back to Dates using UTC format not Locale
        Date getDate = simpleDateFormatter.parse(utcDate);
        Date getTime = simpleTimeFormatter.parse(utcTime);

        // NOW after having the Dates you can change the formatters timezone to your
        // local to format them into strings
        simpleDateFormatter.setTimeZone(TimeZone.getDefault());
        simpleTimeFormatter.setTimeZone(TimeZone.getDefault());

        String getLocalDate = simpleDateFormatter.format(getDate);
        String getLocalTime = simpleTimeFormatter.format(getTime);
        System.out.println("Get local date: " + getLocalDate);
        System.out.println("Get local time: " + getLocalTime);

    } catch (ParseException e) {
        e.printStackTrace();
    }

}