我想知道打开 RMS 记录是否会检查它是否在 javame 中进行了修改。例如
RecordStore rs;
//First RMS access
rs.open("gamescores",true);
rs.addRecord(null,0,0);
rs.closeRecordStore;
//Second RMS access
rs = RecordStore.open("gamescores",true);
long timeStamp = rs.getLastModified();
rs.closeRecordStore();
getLastModified() 将返回第一次 RMS 访问或第二次访问的时间。