문제

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 ?

도움이 되었습니까?

해결책

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.
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top