-1
我讓j2me應用程序正常工作,但我想在同一天后刪除RMS文件,如3-3-2012中創建的文件,並自動刪除10-3-2012文件。使用j2me程序刪除Rms文件
請幫我提供關於如何使用j2me程序刪除RMS文件的建議。不需要刪除記錄;我想要刪除RMS文件。
我讓j2me應用程序正常工作,但我想在同一天后刪除RMS文件,如3-3-2012中創建的文件,並自動刪除10-3-2012文件。使用j2me程序刪除Rms文件
請幫我提供關於如何使用j2me程序刪除RMS文件的建議。不需要刪除記錄;我想要刪除RMS文件。
使用此方法來從設備中刪除RMS文件:
/**
* A static method to delete a particular storage file
* @param storageName Name of existing storage file
* @return True if deleted, else False
*/
public static boolean DeleteStorage(String storageName){
boolean isDeleted = false;
try{
RecordStore.deleteRecordStore(storageName);
isDeleted = true;
}
catch(RecordStoreException ex){ isDeleted=false; }
return isDeleted;
}