如何删除J2ME应用程序中的所有本地数据库

发布于 2024-12-14 03:18:57 字数 138 浏览 1 评论 0原文

我想刷新我的 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 技术交流群。

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

发布评论

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

评论(1

ぺ禁宫浮华殁 2024-12-21 03:18:57

在J2ME环境中,
您可以通过使用以下方法列出所有 RMS 来实现此目的。

public static String[] listAllRecordStore () 
{
    return RecordStore.listRecordStores();
}

这里,方法返回String数组,现在在for循环中逐个删除RMS表。

In J2ME Environment,
you can achieve such thing by listing all the RMS Using following method.

public static String[] listAllRecordStore () 
{
    return RecordStore.listRecordStores();
}

Here, Method Returns the String array, now delete one by one RMS table in a for loop.

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