工作搞個J2ME程序,測試時候發現RMS數據只能在程序運行時保存,並沒有真正生成.db文件。
解決方法,在開始菜單Sun Java Wireless Toolkit 2.5.1 for CLDC欄中運行Preferences,跳出偏好框,在裡面的存儲欄的存儲根目錄填寫.\DefaultColorPhone (因為默認的相對路徑是C:\WTK2.5.1\appdb)
問題解決了
另外,RMS中的RecordEnumeration是一個環形結構
//得到RMS中所有記錄信息,返回vector
public Vector getRecords(){
try{
//需要根據不同操作取得不同的排序
RecordEnumeration re = rs.enumerateRecords(null,null,false);
int length = re.numRecords();
Vector records=new Vector();
if(length == 0){
return null;
}else{
int i = 0;
// while(re.hasNextElement()){
// re.nextRecord();
//
// byte[] data = re.nextRecord();
// records.addElement(data);
//
// }
re.reset();
while(re.hASPreviousElement()){
byte[] data = re.previousRecord();
records.addElement(data);
}
return records;
}
}catch(RecordStoreException ex){
ex.printStackTrace();
return null;
}
}
這段程序中如果是用的next的方法,則得到的Vector裡面的對象是逆序的,比如我按順序放1,2,3取出來的時候就成了3,2,1。所以我用的是previous的方法