报警管理器时间设置问题

发布于 2024-10-13 09:00:45 字数 510 浏览 1 评论 0原文

我想在特定的日期和时间设置闹钟。我正在使用 webservice 获取日期和时间。我已经解析并分割了日期和时间并使用了 SimpleDateFormat,现在我想将此日期和时间放入 [alarmManager.set(AlarmManager.RTC_WAKEUP,dt,endingIntent );] 但我的闹钟在给定时间不起作用

       String str_date= hr+":"+min+":"+sec+" "+dat+"/"+mon+"/"+year;
    SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss dd/MM/yyyy");
    ParsePosition position = new ParsePosition(0);

    java.util.Date stringToDate = sdf.parse(str_date, position);
     dt = stringToDate.getDate();

请帮助 提前致谢

I want to set an alarm at a particular date and time . iam getting my date and time with the webservice.i have parsed and splitted the date and time and used SimpleDateFormat and now i want to put this date and time in [alarmManager.set(AlarmManager.RTC_WAKEUP,dt, pendingIntent );] but my alarm doesnot work on the given time

       String str_date= hr+":"+min+":"+sec+" "+dat+"/"+mon+"/"+year;
    SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss dd/MM/yyyy");
    ParsePosition position = new ParsePosition(0);

    java.util.Date stringToDate = sdf.parse(str_date, position);
     dt = stringToDate.getDate();

Please help
thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

假装不在乎 2024-10-20 09:00:45

您应该传递给 Alarm.set 是一个 longgetDate (即 已弃用)返回一个 int。

尝试使用 getTime()

The time you should pass to Alarm.set is a long and getDate (which is deprecated) returns an int.

Try with getTime()

美人如玉 2024-10-20 09:00:45

AlarmManager 在 UTC 时区使用以毫秒为单位的时间...
因此时间解析必须考虑时区

因此在 SimpleDateFormat new 实例之后您可以设置 UTC 时区

示例:

SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss dd/MM/yyyy");
sdf.setTimeZone(TimeZone.getTimeZone("UTC"));

那么你的解析就可以了并且与 AlarmManager 服务兼容。

AlarmManager use time in millesecond unit at UTC time zone...
So time parsing have to take the timezone into account

So after SimpleDateFormat new instance you may set the UTC timezone

example :

SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss dd/MM/yyyy");
sdf.setTimeZone(TimeZone.getTimeZone("UTC"));

then your parsing will be ok and compatible for the AlarmManager service.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文