我想列出记录存储中的所有记录。我已经宣布了一个清单:
Private List tlist = new List("Select One", List.IMPLICIT);
还列举了记录:
Form mainf;
Command exit = new Command("Exit", Command.EXIT, 0);
RecordEnumeration re = null;
int numrecords = 0;
try {
re = contactList.enumerateRecords(null, null, false);
numrecords = re.numRecords();
} catch (RecordStoreException rse ) { numrecords = 0;}
现在我只需要知道如何列出列表中的所有记录。