如何根据时区设置日历

How to set Calendar according to Timezone

我想根据时区制作一个日历。我试图通过浏览不同的查询来解决问题,但我不能。现在它选择移动默认时间。如果有人有想法请帮助我。时区应为英​​国时间。

我试过了:

{
    Calendar c1;
    c1 = Calendar.getInstance(TimeZone.getTimeZone("UTC"), Locale.UK);
    int hour = c1.get(Calendar.HOUR);
    int minutes = c1.get(Calendar.MINUTE);
    int seconds = c1.get(Calendar.SECOND);
    int day = c1.get(Calendar.DAY_OF_MONTH);
    int month = c1.get(Calendar.MONTH);
    int year = c1.get(Calendar.YEAR);
} 

但它也是returns系统日期。

java.time

    ZonedDateTime nowInUk = ZonedDateTime.now(ZoneId.of("Europe/London"));
    int hour = nowInUk.getHour();
    int minutes = nowInUk.getMinute();
    int seconds = nowInUk.getSecond();
    int day = nowInUk.getDayOfMonth();
    Month month = nowInUk.getMonth();
    int year = nowInUk.getYear();

    System.out.println("hour = " + hour + ", minutes = " + minutes + ", seconds = " + seconds 
            + ", day = " + day + ", month = " + month + ", year = " + year);

当我运行刚才这个片段时,它打印:

hour = 3, minutes = 41, seconds = 15, day = 5, month = OCTOBER, year = 2018

ZonedDateTime 很大程度上取代了过时的 Calendar class.

你的代码出了什么问题?

英国时间的时区 ID 是 Europe/London。在您的代码中,您使用了 UTC,这是另外一回事,至少有时会给您不同的结果。英国时间在某些年份的某些年份与UTC重合,但今年不是每年的这个时候。所以你得到的时间比英国时间早一小时。

另外 c1.get(Calendar.HOUR) 为您提供上午或下午从 1 点到 12 点的小时数,我认为这不是您想要的。

问题:我可以在 Android 上使用 java.time 吗?

是的,java.time 在 Android 设备上运行良好。它只需要至少 Java 6.

  • 在 Java 8 和更高版本以及新的 Android 设备上(据我所知,来自 API 级别 26)新的 API 是内置的。
  • 在 Java 6 和 7 中获取 ThreeTen Backport,新 classes 的 backport(ThreeTen 用于 JSR 310,其中首次描述了现代 API)。
  • 在(较旧的)Android 上,使用 ThreeTen Backport 的 Android 版本。它叫做 ThreeTenABP。确保从包 org.threeten.bp 和子包中导入日期和时间 classes。

链接

使用此方法从时区获取时间,但这里有一个条件必须需要在设置中检查自动时间,否则移动到设置页面。

 private void setDateTime() {
//        Settings.Global.putInt(getContentResolver(), Settings.Global.AUTO_TIME, 1);
        try {
            int value = Settings.Global.getInt(getContentResolver(), Settings.Global.AUTO_TIME);
            if (value == 1) {
                Log.i("value", String.valueOf(value));
                {
                    TimeZone.setDefault(TimeZone.getTimeZone("Europe/London"));
                    String pattern = "yyyy-MM-dd HH:mm:ss";
                    SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern, new Locale("en", "in"));
                    String date = simpleDateFormat.format(new Date());
                    Log.i("get C_d_t", date);
                    txt_time.setText(date);
                }
            } else {
                //move to settings
                Toast.makeText(getBaseContext(), "Must need to checked automatic date & time", Toast.LENGTH_SHORT).show();
                startActivityForResult(new Intent(android.provider.Settings.ACTION_DATE_SETTINGS), 0);


            }
        } catch (Settings.SettingNotFoundException e) {
            e.printStackTrace();
        }


    }