检测 MIDlet 是否是首次安装或运行

发布于 2024-10-20 04:33:57 字数 76 浏览 2 评论 0原文

我正在使用 J2ME SDK 3.0 和 J2ME Polish,我想知道当用户安装应用程序或 MIDlet 首次运行时是否调用任何事件。

I'm using J2ME SDK 3.0 and J2ME Polish and i would like to know if there's any event that is called when the user installs the application or when the MIDlet is running for the first time.

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

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

发布评论

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

评论(1

最美的太阳 2024-10-27 04:33:57

没有特定的“首次运行”事件。但是,当MIDlet启动时,系统将调用MIDlet.startApp()。您可以通过创建 RecordStore 并在其中保存一些信息来实现自己的“首次运行”检测。如果 RecordStore 不存在,则首先运行它。如果是这样,那么您之前已经运行过 MIDlet。

There is no specific "first run" event. However, when the MIDlet starts, the system will invoke MIDlet.startApp(). You can implement your own "first run" detection by creating a RecordStore and saving some information in it. If the RecordStore does not exist, then it's first run. If it does, then you have run the MIDlet before.

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