What is RMS ?
Answers were Sorted based on User's Feedback
Answer / jguru
The Record Management System (RMS) is a simple
record-oriented database that allows a MIDlet to
persistently store information and retrieve it later.
Different MIDlets can also use the RMS to share data.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / b.chandra sai mohan
to create a Record store
RecordStore rs= RecordStore.OpenRecordStore(String
name,boolean CreateIfNecessary)
CreateIfNecessary=true.(if REcord Store doesnot exist it
will create otherwise it opens existing one)
CreateIfNecessary=false; and REcorsStore doesnot exist we
will get REcordStorenotfound exception .
closeRecoreStore()---->To close REcord stre
to add newREcord we have method
int addRecord(byte[] data,int offset,int numbytes)
byte data[]=rs.getRecord(int recordID);
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / alex
this is a complete example for RMS
RecordStore tempStore = null;
String strStore = "location:dhaka";
byte[] bs=strStore.getBytes();
int RecordId = 0;
try
{
tempStore =
RecordStore.openRecordStore("TestRecordStore", true,
RecordStore.AUTHMODE_ANY, true);
RecordId = tempStore.addRecord(bs, 0, 5);
byte[] resultByte = tempStore.getRecord(RecordId);
String value = new String(resultByte);
System.out.println(value);
}catch(Exception ex)
{
System.out.println(ex.getMessage());
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain CVM ?
What is PDC ?
Hi how to create a mobile book on j2me program, for example dictionary, bible, magazine…. then read on the mobile phone, tell me the code and steps or other help site. Thanks
What is Personal Profile ?
currently runnaning the application how can calucate the size of the application?
What is RMI Profile
11 is a group of specifications for wireless networks developed by the Institute of Electrical and Electronics Engineers (IEEE). 802.11 uses the Ethernet protocol and CSMA/CA (carrier sense multiple access with collision avoidance) for path sharing.
i am working in blackberry.In blackberry emulator it is connecting to server but when i installed the program in blackberry it is not connecting to server why
Describe and explain UMTS ?
Explain about RMI OP ?
where images can be stored in j2me?
Memory managment technique in j2me