计划一个BlackBerry应用程序

计划一个BlackBerry应用程序,blackberry,java-me,Blackberry,Java Me,我想安排我的申请。试试这个 // Get the current application descriptor. ApplicationDescriptor current = ApplicationDescriptor .currentApplicationDescriptor(); // Schedules are rounded to the nearest minute so ensure the // application is sc

我想安排我的申请。

试试这个

// Get the current application descriptor.
ApplicationDescriptor current = ApplicationDescriptor
                        .currentApplicationDescriptor();

// Schedules are rounded to the nearest minute so ensure the
// application is scheduled for at least 1 minute in the future.
ApplicationManager.getApplicationManager().scheduleApplication(
                        current, System.currentTimeMillis() + 60001, true);
有关更多详细信息,您也可以阅读本文。 试试这个

// Get the current application descriptor.
ApplicationDescriptor current = ApplicationDescriptor
                        .currentApplicationDescriptor();

// Schedules are rounded to the nearest minute so ensure the
// application is scheduled for at least 1 minute in the future.
ApplicationManager.getApplicationManager().scheduleApplication(
                        current, System.currentTimeMillis() + 60001, true);
有关更多详细信息,您也可以阅读本文。

关于这一点,我有个问题。如果设备重新启动,会发生什么情况?计划的应用程序将启动或需要再次计划?如果对此有疑问,需要再次计划。如果设备重新启动,会发生什么情况?计划的应用程序将启动或需要再次计划?需要再次计划