RecordStore rs = RecordStore.openRecordStore("StoryDataBase1",true);
String data_to_write_in_file = Slug.getString()+"^"+title.getString()+"^"+Body.getString()+"^"+com.editorial.Main.MainImagePath+"^"+com.editorial.Main.MainVideoPath+"^"+com.editorial.Main.MainVoicePath+"$";

byte b[] = rs.getRecord(1);
String str = new String(b,0,b.length);
if(str.equals("")) {
byte bytes[] = data_to_write_in_file.getBytes();    
rs.addRecord(bytes,0,bytes.length);
}
else
{
str=str+data_to_write_in_file;
byte[] data = str.getBytes();
rs.setRecord(1, data, 0, data.length);
}    
rs.closeRecordStore();

in this i want to check whether rms contains first value or not, otherwise it will enter new value in it??? But i am still little bit confused that whether information going to stay permanent in mobile or not...

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

An information permanently stored in RMS and We are already discussed regards this. See this sample code and try like this,

    byte[] recData = null;
    int len;
    RecordStore rs = RecordStore.openRecordStore("StoryDataBase1", true);

    if (rs.getNumRecords() > 0) {
    recData = new byte[rs.getRecordSize(1)];
    len = rs.getRecord(1, recData, 0);
    String value = new String(recData, 0, len);
    if(value == null) {
    ....
    } else {
    ...
     }
    }

Updates

See these links for your reference,

  1. Persistent Data in Java ME
  2. How to use RMS in j2me
link|improve this answer
String data_to_write_in_file = ""; if (rs.getNumRecords() > 0) { recData = new byte[rs.getRecordSize(1)]; len = rs.getRecord(1, recData, 0); String value = new String(recData, 0, len); value=value+data_to_write_in_file; byte[] data = data_to_write_in_file.getBytes(); rs.setRecord(1, data, 0, data.length); } else { byte bytes[] = data_to_write_in_file.getBytes(); rs.addRecord(bytes,0,bytes.length); } i have wrote this ... but this is still showing random acess err – Sourabh Rustagi Feb 23 '11 at 13:24
Where you check null value? because if value is not available means it returns null value. Also see my updates. – bharath Feb 23 '11 at 13:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.