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.

link|improve this question

61% accept rate
feedback

1 Answer

up vote 4 down vote accepted

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.

link|improve this answer
hey @mayur rahatekar, please accept my answer, so that it can be useful for others – Lucifer Apr 3 at 2:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.