核心技術:J2ME中RMS的使用解析(轉)
核心技術:J2ME中RMS的使用解析(轉)[@more@]在J2ME中,RMS作為唯一的永久性儲存工具,其重要性是不言而喻的。但是很多剛剛開始學習J2ME的新人總是抱怨在這方面的資料很少,或者是針對性不強。因此,我想把自己在這方面的一些學習心得和大家交流一下。
RMS即Record Manager System,在手機應用中常常作為得分記錄、遊戲資訊儲存等的工具使用。
RMS的使用可以分為兩個部分:一、單一記錄的構造;二、RecordStore的使用和操作。下面就這兩方面進行詳細說明。
一、單一記錄的構造。我們在儲存記錄時可能需要記錄很多相似的條目,在這裡我們可以把這種結構看成資料庫,我們在這一步就是要構造資料庫中的一行,即單一記錄的構造。程式的原始碼如下:
package com.cuilichen.usual;
import java.io.ByteArrayInputStream;//要使用到的各種輸入輸出流
import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.DataOutputStream;
public class Appointment {//單一記錄的類名
private int int1; //
private int int2; //
private long long1;
private String str1; //str1作為保留欄位,記錄檢索的關鍵字
private String str2; //
private String str3; //
private boolean WroteFlag; //
public Appointment() {
}
public Appointment(int _int1, int _int2, long _long1, String _str1,
String _str2, String _str3, boolean _WroteFlag) {
this.int1 = _int1; //寫入RMS的建構函式
this.int2 = _int2;
this.long1 = _long1;
this.str1 = _str1;
this.str2 = _str2;
this.str3 = _str3;
this.WroteFlag = _WroteFlag;
}
public Appointment(byte[] rec) {
initAppointmnet(rec); //讀取RMS內容的建構函式
}
public byte[] toBytes() { //寫成位元組
byte[] data = null;
try {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(baos);
dos.writeInt(int1);
dos.writeInt(int2);
dos.writeLong(long1);
dos.writeUTF(str1);
dos.writeUTF(str2);
dos.writeUTF(str3);
dos.writeBoolean(WroteFlag);
data = baos.toByteArray();
baos.close();
dos.close();
} catch (Exception e) {
e.printStackTrace();
}
return data;
}
public void initAppointmnet(byte[] rec) { //從位元組讀取內容
ByteArrayInputStream bais = new ByteArrayInputStream(rec);
DataInputStream dis = new DataInputStream(bais);
try {
int1 = dis.readInt();
int2 = dis.readInt();
long1 = dis.readLong();
str1 = dis.readUTF();
str2 = dis.readUTF();
str3 = dis.readUTF();
WroteFlag = dis.readBoolean();
} catch (Exception e) {
e.printStackTrace();
}
}
public int getInt1() { //int
return int1;
}
public int getInt2() {
return int2;
}
public long getLong1() {
return long1;
}
public String getStr1() { //String
return str1;
}
public String getStr2() { //String
return str2;
}
public String getStr3() {
return str3;
}
public boolean getWroteFlag() { //返回寫入標誌
return WroteFlag;
}
}
這個類的使用保證了我們在使用流時,內容的寫入和輸出。當然,就如同資料庫表的設計一樣,我們可以任意對每一條記錄增加或減少欄位,在上面的類中我只使用了int1,int2,long1,str1,str2,str3和WroteFlag一共7個欄位。
二、RecordStore的操作。類RMS如下:
package com.cuilichen.usual;
import javax.microedition.rms.RecordEnumeration;
import javax.microedition.rms.RecordStore;
public class RMS {
public static final int Int1 = 0;//各個欄位的預設數值
public static final int Int2 = 0;
public static final long Long1 = 0;
public static final String Str1 = "";
public static final String Str2 = "";
public static final String Str3 = "";
public static boolean addRecord(String name, int int1, int int2,//新增記錄
long long1, String str1, String str2, String str3, boolean b) {
boolean success = false;
try {
RecordStore rs = RecordStore.openRecordStore(name, true);
Appointment app = new Appointment(int1, int2, long1, str1, str2,str3, b);
//既然str1作為保留欄位,我們在這裡就要如此操作:例如int1為我們設定的關鍵字,那麼str1 = Integer.toString(int1);
byte[] data = app.toBytes();
rs.addRecord(data, 0, data.length);
rs.closeRecordStore();
success = true;
} catch (Exception e) {
e.printStackTrace();
}
return success;
}
public static int getNumOfRecords(String name) {//得到RMS中記錄的條數
try {
RecordStore rs = RecordStore.openRecordStore(name, true);
return rs.getNumRecords();
} catch (Exception e) {
return 0;
}
}
public static Appointment[] getRecords(String name) {//取得RMS中的所有記錄
Appointment[] result = { };
try {
RecordStore rs = RecordStore.openRecordStore(name, false);
RecordEnumeration re = rs.enumerateRecords(null, null, false);
result = new Appointment[rs.getNumRecords()];
for (int i = 0; i < result.length; i++) {
int j = re.previousRecordId();
Appointment app = new Appointment(rs.getRecord(j));
result = app;
//System.out.println("app["+i+"] "+app.getStr2());
}
rs.closeRecordStore();
} catch (Exception e) {
}
return result;
}
public static Appointment getRecord(String name, int j) {//根據記錄編號(引數 int j)取得一條記錄
Appointment result = new Appointment();
try {
RecordStore rs = RecordStore.openRecordStore(name, false);
RecordEnumeration re = rs.enumerateRecords(null, null, false);
result = new Appointment(rs.getRecord(j));
rs.closeRecordStore();
} catch (Exception e) {
}
return result;
}
public static int getIndex(String name, String content) {//得到記錄號int j,這裡需要使用保留欄位str1
RecordStore rs = null;
RecordEnumeration re = null;
try {
rs = RecordStore.openRecordStore(name, false); //open
re = rs.enumerateRecords(null, null, false); //enumeration
for (int i = 0; i < RMS.getNumOfRecords(name); i++) {
int j = re.nextRecordId();
Appointment app = new Appointment(rs.getRecord(j));
if (app.getStr1().equals(content)) {
return j;
}
}
} catch (Exception e) {
}
return 1;
}
public static boolean setRecord(String name, int id, int int1, int int2,//設定記錄號為id的記錄
long long1, String str1, String str2, String str3, boolean b) {
boolean success = false;
RecordStore rs = null;
RecordEnumeration re = null;
try {
rs = RecordStore.openRecordStore(name, false); //open
re = rs.enumerateRecords(null, null, false); //enumeration
Appointment app = new Appointment(int1, int2, long1, str1, str2, str3, b);
//str1作為保留欄位,在這裡如此操作:例如若int1為我們設定的關鍵字,那麼str1 = Integer.toString(int1);
byte[] data = app.toBytes();
rs.setRecord(id, data, 0, data.length);
success = true;
rs.closeRecordStore();
} catch (Exception e) {
}
return success;
}
}
在這個類中,我沒有將各個Exception向外丟擲,一般來說這樣作是不合適的,它違背了Java的異常處理機制。但是在我使用這個類的各個J2ME程式中,它是可以勝任的,所以也就沒有進行進一步的修改。
有了以上的兩個類和你對RMS的理解,在程式中,你就可以順暢的使用RMS了。
比如在MIDlet開始時,如下操作(增加記錄):
protected void startApp() throws MIDletStateChangeException {
if (RMS.getNumOfRecords(rsName) = = 0) {//rsName在前面已經宣告瞭。String rsName=“MyRMS”;
for (int i = 0; i <6; i++) {
RMS.addRecord(rsName, RMS.Int1, i, RMS.Long1, Integer . toString(i), RMS.Str2, "1234567890123456789",false);
}
}它就在RMS中增加了6條記錄,其中int1,long1,str2,WroteFlag都沒有使用,我們只是使用int2,str1(作為保留欄位)和str3。
}
RMS即Record Manager System,在手機應用中常常作為得分記錄、遊戲資訊儲存等的工具使用。
RMS的使用可以分為兩個部分:一、單一記錄的構造;二、RecordStore的使用和操作。下面就這兩方面進行詳細說明。
一、單一記錄的構造。我們在儲存記錄時可能需要記錄很多相似的條目,在這裡我們可以把這種結構看成資料庫,我們在這一步就是要構造資料庫中的一行,即單一記錄的構造。程式的原始碼如下:
package com.cuilichen.usual;
import java.io.ByteArrayInputStream;//要使用到的各種輸入輸出流
import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.DataOutputStream;
public class Appointment {//單一記錄的類名
private int int1; //
private int int2; //
private long long1;
private String str1; //str1作為保留欄位,記錄檢索的關鍵字
private String str2; //
private String str3; //
private boolean WroteFlag; //
public Appointment() {
}
public Appointment(int _int1, int _int2, long _long1, String _str1,
String _str2, String _str3, boolean _WroteFlag) {
this.int1 = _int1; //寫入RMS的建構函式
this.int2 = _int2;
this.long1 = _long1;
this.str1 = _str1;
this.str2 = _str2;
this.str3 = _str3;
this.WroteFlag = _WroteFlag;
}
public Appointment(byte[] rec) {
initAppointmnet(rec); //讀取RMS內容的建構函式
}
public byte[] toBytes() { //寫成位元組
byte[] data = null;
try {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(baos);
dos.writeInt(int1);
dos.writeInt(int2);
dos.writeLong(long1);
dos.writeUTF(str1);
dos.writeUTF(str2);
dos.writeUTF(str3);
dos.writeBoolean(WroteFlag);
data = baos.toByteArray();
baos.close();
dos.close();
} catch (Exception e) {
e.printStackTrace();
}
return data;
}
public void initAppointmnet(byte[] rec) { //從位元組讀取內容
ByteArrayInputStream bais = new ByteArrayInputStream(rec);
DataInputStream dis = new DataInputStream(bais);
try {
int1 = dis.readInt();
int2 = dis.readInt();
long1 = dis.readLong();
str1 = dis.readUTF();
str2 = dis.readUTF();
str3 = dis.readUTF();
WroteFlag = dis.readBoolean();
} catch (Exception e) {
e.printStackTrace();
}
}
public int getInt1() { //int
return int1;
}
public int getInt2() {
return int2;
}
public long getLong1() {
return long1;
}
public String getStr1() { //String
return str1;
}
public String getStr2() { //String
return str2;
}
public String getStr3() {
return str3;
}
public boolean getWroteFlag() { //返回寫入標誌
return WroteFlag;
}
}
這個類的使用保證了我們在使用流時,內容的寫入和輸出。當然,就如同資料庫表的設計一樣,我們可以任意對每一條記錄增加或減少欄位,在上面的類中我只使用了int1,int2,long1,str1,str2,str3和WroteFlag一共7個欄位。
二、RecordStore的操作。類RMS如下:
package com.cuilichen.usual;
import javax.microedition.rms.RecordEnumeration;
import javax.microedition.rms.RecordStore;
public class RMS {
public static final int Int1 = 0;//各個欄位的預設數值
public static final int Int2 = 0;
public static final long Long1 = 0;
public static final String Str1 = "";
public static final String Str2 = "";
public static final String Str3 = "";
public static boolean addRecord(String name, int int1, int int2,//新增記錄
long long1, String str1, String str2, String str3, boolean b) {
boolean success = false;
try {
RecordStore rs = RecordStore.openRecordStore(name, true);
Appointment app = new Appointment(int1, int2, long1, str1, str2,str3, b);
//既然str1作為保留欄位,我們在這裡就要如此操作:例如int1為我們設定的關鍵字,那麼str1 = Integer.toString(int1);
byte[] data = app.toBytes();
rs.addRecord(data, 0, data.length);
rs.closeRecordStore();
success = true;
} catch (Exception e) {
e.printStackTrace();
}
return success;
}
public static int getNumOfRecords(String name) {//得到RMS中記錄的條數
try {
RecordStore rs = RecordStore.openRecordStore(name, true);
return rs.getNumRecords();
} catch (Exception e) {
return 0;
}
}
public static Appointment[] getRecords(String name) {//取得RMS中的所有記錄
Appointment[] result = { };
try {
RecordStore rs = RecordStore.openRecordStore(name, false);
RecordEnumeration re = rs.enumerateRecords(null, null, false);
result = new Appointment[rs.getNumRecords()];
for (int i = 0; i < result.length; i++) {
int j = re.previousRecordId();
Appointment app = new Appointment(rs.getRecord(j));
result = app;
//System.out.println("app["+i+"] "+app.getStr2());
}
rs.closeRecordStore();
} catch (Exception e) {
}
return result;
}
public static Appointment getRecord(String name, int j) {//根據記錄編號(引數 int j)取得一條記錄
Appointment result = new Appointment();
try {
RecordStore rs = RecordStore.openRecordStore(name, false);
RecordEnumeration re = rs.enumerateRecords(null, null, false);
result = new Appointment(rs.getRecord(j));
rs.closeRecordStore();
} catch (Exception e) {
}
return result;
}
public static int getIndex(String name, String content) {//得到記錄號int j,這裡需要使用保留欄位str1
RecordStore rs = null;
RecordEnumeration re = null;
try {
rs = RecordStore.openRecordStore(name, false); //open
re = rs.enumerateRecords(null, null, false); //enumeration
for (int i = 0; i < RMS.getNumOfRecords(name); i++) {
int j = re.nextRecordId();
Appointment app = new Appointment(rs.getRecord(j));
if (app.getStr1().equals(content)) {
return j;
}
}
} catch (Exception e) {
}
return 1;
}
public static boolean setRecord(String name, int id, int int1, int int2,//設定記錄號為id的記錄
long long1, String str1, String str2, String str3, boolean b) {
boolean success = false;
RecordStore rs = null;
RecordEnumeration re = null;
try {
rs = RecordStore.openRecordStore(name, false); //open
re = rs.enumerateRecords(null, null, false); //enumeration
Appointment app = new Appointment(int1, int2, long1, str1, str2, str3, b);
//str1作為保留欄位,在這裡如此操作:例如若int1為我們設定的關鍵字,那麼str1 = Integer.toString(int1);
byte[] data = app.toBytes();
rs.setRecord(id, data, 0, data.length);
success = true;
rs.closeRecordStore();
} catch (Exception e) {
}
return success;
}
}
在這個類中,我沒有將各個Exception向外丟擲,一般來說這樣作是不合適的,它違背了Java的異常處理機制。但是在我使用這個類的各個J2ME程式中,它是可以勝任的,所以也就沒有進行進一步的修改。
有了以上的兩個類和你對RMS的理解,在程式中,你就可以順暢的使用RMS了。
比如在MIDlet開始時,如下操作(增加記錄):
protected void startApp() throws MIDletStateChangeException {
if (RMS.getNumOfRecords(rsName) = = 0) {//rsName在前面已經宣告瞭。String rsName=“MyRMS”;
for (int i = 0; i <6; i++) {
RMS.addRecord(rsName, RMS.Int1, i, RMS.Long1, Integer . toString(i), RMS.Str2, "1234567890123456789",false);
}
}它就在RMS中增加了6條記錄,其中int1,long1,str2,WroteFlag都沒有使用,我們只是使用int2,str1(作為保留欄位)和str3。
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617542/viewspace-960063/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 智慧雲解析有哪些核心技術?
- 交換技術:NGN核心軟交換技術分析(轉)
- 使用J2ME技術獲得手機的運營商型別型別
- 恆訊科技技術分享:雲端計算中的核心技術有哪些?
- 三層交換機技術解析(轉)
- SVG中的動畫技術(2) (轉)SVG動畫
- SVG中的動畫技術(1) (轉)SVG動畫
- SVG中的動畫技術(3) (轉)SVG動畫
- Canvas 核心技術Canvas
- AJAX核心技術
- ## JavaSE核心技術Java
- 解析丨自動駕駛核心技術:感知、決策與執行(中:決策篇)自動駕駛
- GPU在AI業務中的核心技術與應用GPUAI
- Lilo使用技術(轉)
- 智慧雲解析DNS有哪些核心技術?-中科三方DNS
- 《Spring核心技術》第6章:深度解析@PropertySource註解Spring
- 區塊鏈的核心技術區塊鏈
- JavaEE的13種核心技術Java
- Delphi中停靠技術的實現 (轉)
- 深耕核心技術·賦能數字化轉型
- 智慧CDN(中):CDN的系統構成和核心技術
- SpringMVC核心技術SpringMVC
- Hystrix技術解析
- XML解析技術XML
- Android技術棧(五)核心資料結構原始碼解析Android資料結構原始碼
- 不重視技術,何談掌握核心技術?
- J2ME中建立Splash啟動介面 (轉)
- J2ME:clip視窗可使用anchor--轉(轉)
- delphi中的時間操作技術(1) (轉)
- delphi中的時間操作技術(2) (轉)
- 資料中臺中的核心概念解析
- 如何掌握C#的核心技術C#
- AR技術在藝術展館中的使用效果
- 深入淺出解析JVM中的Safepoint | 得物技術JVM
- apache中防止盜鏈技術(轉)Apache
- 《Spring核心技術》第5章:三萬字深度解析@Import註解SpringImport
- Linux核心技術分析Linux
- Apache Flink核心技術Apache