我想以LWUIT格式显示从WMA控制台发送的消息...
短信存储在记录中...我需要从记录中获取短信。
我已将短信存储在记录中,但在检索和显示时遇到问题

if (ae.getSource()==inboxlist){
    iform = new Form("Message");


        try {
                record = RecordStore.openRecordStore("Sms", true );
            s = new String(record.getRecord(smsindex));

              inb = new Label();
        inb.setText(s);

        } catch (RecordStoreException ex) {
            ex.printStackTrace();
        }
      iform.addComponent(inb);
    iform.addCommand(exit);
    iform.setCommandListener(this);
          iform.show();
}

最佳答案

看到我的答案在

How to sort recordstore records based on a certain field in it?

使用偏好类,因为它用来保存短信

07-25 22:35