Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建 Android 项目,我必须在其中通过 PHP 脚本执行一些数据库操作。通常它可以工作,但我想在特定日期和时间运行 PHP 脚本,例如为某些数据库操作创建计划。这可能吗?
我们可以通过AlarmManager类和简单的代码来实现:
Date dateobj = new Date(Year, month, day, hour, min); AlarmManager.set(AlarmManager.RTC_WAKEUP, dateobj.getTime(), pendingIntent);