当前位置:首页 > 全部子站 > IT > 思科认证

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

来源:长理培训发布时间:2017-12-21 11:17:48

   < 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++) { 

}

责编:罗莉

发表评论(共0条评论)
请自觉遵守互联网相关政策法规,评论内容只代表网友观点,发表审核后显示!

国家电网校园招聘考试直播课程通关班

  • 讲师:刘萍萍 / 谢楠
  • 课时:160h
  • 价格 4580

特色双名师解密新课程高频考点,送国家电网教材讲义,助力一次通关

配套通关班送国网在线题库一套

课程专业名称
讲师
课时
查看课程

国家电网招聘考试录播视频课程

  • 讲师:崔莹莹 / 刘萍萍
  • 课时:180h
  • 价格 3580

特色解密新课程高频考点,免费学习,助力一次通关

配套全套国网视频课程免费学习

课程专业名称
讲师
课时
查看课程
在线题库
面授课程更多>>
图书商城更多>>
在线报名
  • 报考专业:
    *(必填)
  • 姓名:
    *(必填)
  • 手机号码:
    *(必填)
返回顶部