如何删除J2ME应用程序中的所有本地数据库
我想刷新我的 J2ME 应用程序意味着我想删除移动设备包含的所有本地数据库。我知道如何通过“清除数据”在 Android 应用程序中执行上述任务,通过使用它,我们可以从我的 Android 应用程序中删除所有数据,就像我想在 J2ME 应用程序中执行的操作一样。
I want to refresh my J2ME application means I want to delete all the local db which the mobile contains. I know how to do above task in android application by "Clear Data" by using this we can delete all the data from my android application same thing I want to do in J2ME application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在J2ME环境中,
您可以通过使用以下方法列出所有 RMS 来实现此目的。
这里,方法返回String数组,现在在for循环中逐个删除RMS表。
In J2ME Environment,
you can achieve such thing by listing all the RMS Using following method.
Here, Method Returns the String array, now delete one by one RMS table in a for loop.