Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个Java ME应用程序。在这里,我想列出所有RecordStore可用的。如何获取所有RecordStore存在的名称?
Java ME
RecordStore
有一个方法叫做listRecordStores,它返回可用 RMS 的字符串数组。
listRecordStores
例如
RecordStore rs = new RecordStore(); rs.listRecordStores() will return the Array of available RMS.