I am Developing a Java ME Application. Here I want to list all the RecordStore available. How can I get the names of all the RecordStore exists ?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

There is a method called listRecordStores , it returns String Array of the available RMS.

For e.g.

RecordStore rs = new RecordStore();

rs.listRecordStores() will return the Array of available RMS.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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