以编程方式卸载 J2ME 应用程序
我开发了一个j2me应用程序。我希望该应用程序在将其部署到手机中后的某个时刻自行卸载。卸载无需任何用户交互即可完成。怎么能做到这一点呢?
I developed a j2me application. I want this application to uninstall itself at some point after deploying this in a phone. Uninstallation is done without any user's interaction for that. How can do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,J2ME 应用程序无法以编程方式自行卸载!也许会显示一条消息,要求用户手动卸载它?
您当然可以添加一些逻辑,使应用程序在发生某个事件后实际上变得无用……因此,当用户启动它时,他们只会看到一个屏幕,显示“请卸载我”,没有其他功能。
No, there is no way for a J2ME app to programatically uninstall itself! Perhaps display a message asking the user to uninstall it manually?
You can certainly add some logic to make the app effectively useless after a certain event has happened... so when the user starts it up they just get a screen saying "please uninstall me", with no other functionality.