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 ?
Asked
Active
Viewed 146 times
1

Lucifer
- 29,392
- 25
- 90
- 143
1 Answers
1
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.

Lucifer
- 29,392
- 25
- 90
- 143