电话:0731-83595998
导航

J2ME综合--关于J2ME中RMS的使用解析

来源: 2017-12-21 11:17

   < div align=center>< fieldset style=width=70%>< font color=lightgreen size=1>轰的一声巨响,天上掉下神仙水一滴,化作一个< font color=red size=4>冰封神剑< /font>,恭喜!恭喜啊!< br>< /font>< /fieldset>< /div> 在J2ME中,RMS作为唯一的永久性存储工具,其重要性是不言而喻的。但是很多刚刚开始学习J2ME的新人总是抱怨在这方面的资料很少,或者是针对性不强。因此,我想把自己在这方面的一些学习心得和大家交流一下。

  RMS即Record Manager System,在手机应用中常常作为得分记录、游戏信息存储等的工具使用。 
一、单一记录的构造。我们在存储记录时可能需要记录很多相似的条目,在这里我们可以把这种结构看成数据库,我们在这一步就是要构造数据库中的一行,即单一记录的构造。程序的源码 

  import java.io.ByteArrayInputStream;//要使用到的各种输入输出流 
import java.io.DataInputStream; 

  public class Appointment {//单一记录的类名 
private int int2; // 
private String str1; //str1作为保留字段,记录检索的关键字 
private String str3; // 

  public Appointment() { 

  public Appointment(int _int1, int _int2, long _long1, String _str1, 
this.int1 = _int1; //写入RMS的构造函数 
this.long1 = _long1; 
this.str2 = _str2; 
this.WroteFlag = _WroteFlag; 

  public Appointment(byte rec) { 
}

  public byte toBytes() { //写成字节

  byte data = null;

  try { 
DataOutputStream dos = new DataOutputStream(baos); 
dos.writeInt(int2); 
dos.writeUTF(str1); 
dos.writeUTF(str3); 
data = baos.toByteArray(); 
dos.close(); 
e.printStackTrace(); 
return data; 

|||   public void initAppointmnet(byte rec) { //从字节读取内容

  ByteArrayInputStream bais = new ByteArrayInputStream(rec); 

  try { 
int2 = dis.readInt(); 
str1 = dis.readUTF(); 
str3 = dis.readUTF(); 
} catch (Exception e) { 

  public int getInt1() { //int 
}
return int2; 
public long getLong1() { 
}

  public String getStr1() { //String 
}

  public String getStr2() { //String 
}

  public String getStr3() { 
}

  public boolean getWroteFlag() { //返回写入标志 

这个类的使用保证了我们在使用流时,内容的写入和输出。当然,就如同数据库表的设计一样,我们可以任意对每一条记录增加或减少字段,在上面的类中我只使用了int1,int2,long1,str1,str2,str3和WroteFlag一共7个字段。

  二、RecordStore的操作。类RMS 

  import javax.microedition.rms.RecordEnumeration; 

  public class RMS { 
public static final int Int2 = 0; 
public static final String Str1 = ""; 
public static final String Str3 = "";

  public static boolean addRecord(String name, int int1, int int2,//添加记录 
boolean success = false;

  try { 
Appointment app = new Appointment(int1, int2, long1, str1, str2,str3, b); 
byte data = app.toBytes(); 
rs.closeRecordStore(); 
} catch (Exception e) { 
}
}
try { 

  return rs.getNumRecords(); 
return 0; 
}

  public static Appointment getRecords(String name) {//取得RMS中的所有记录 

  try { 
RecordEnumeration re = rs.enumerateRecords(null, null, false); 
int j = re.previousRecordId(); 
result = app; 

} catch (Exception e) { 
return result; 
public static Appointment getRecord(String name, int j) {//根据记录编号(参数 int j)取得一条记录 
try { 
RecordEnumeration re = rs.enumerateRecords(null, null, false); 
rs.closeRecordStore(); 


RecordStore rs = null; 
try { 
re = rs.enumerateRecords(null, null, false); //enumeration 
int j = re.nextRecordId(); 
if (app.getStr1().equals(content)) { 

} catch (Exception e) { 
return 1; 
public static boolean setRecord(String name, int id, int int1, int int2,//设置记录号为id的记录 
boolean success = false; 
RecordEnumeration re = null; 
rs = RecordStore.openRecordStore(name, false); //open 
Appointment app = new Appointment(int1, int2, long1, str1, str2, str3, b); 
byte data = app.toBytes(); 
success = true; 
} catch (Exception e) { 
return success; 

有了以上的两个类和你对RMS的理解,在程序中,你就可以顺畅的使用RMS了。 
protected void startApp() throws MIDletStateChangeException { 
for (int i = 0; i < 6; i++) { 

}

编辑推荐:

下载Word文档

温馨提示:因考试政策、内容不断变化与调整,长理培训网站提供的以上信息仅供参考,如有异议,请考生以权威部门公布的内容为准! (责任编辑:长理培训)

网络课程 新人注册送三重礼

已有 22658 名学员学习以下课程通过考试

网友评论(共0条评论)

请自觉遵守互联网相关政策法规,评论内容只代表网友观点!

最新评论

点击加载更多评论>>

精品课程

更多
10781人学习

免费试听更多

相关推荐
图书更多+
  • 电网书籍
  • 财会书籍
  • 其它工学书籍
拼团课程更多+
  • 电气拼团课程
  • 财会拼团课程
  • 其它工学拼团
热门排行

长理培训客户端 资讯,试题,视频一手掌握

去 App Store 免费下载 iOS 客户端