I save data to Record store. If the aplication is running it works fine, but when I restart aplication data in record store is lost.

Here is my load command:

            try {
            int i=1;
            display.setCurrent(list2);
            RecordStore RS = RecordStore.openRecordStore("recordStore", true);
            RecordEnumeration re=  RS.enumerateRecords(null, null, true);
            adresaURL ad = new adresaURL();
            System.out.println("nacteno");
            while(re.hasNextElement()){
                byte br[] = RS.getRecord(i);
                ad.setPopis(new String(br));
                br = RS.getRecord(i+1);
                ad.setUrl(new String(br));
                System.out.println(ad.getPopis());
                System.out.println(ad.getUrl());
                i+=2;
                adresy.addElement(ad);
                list2.append(ad.getPopis(), null);
                System.out.println("nacteno2");          
            }
        recordStore.closeRecordStore();
        } catch (Exception e) {
        }
link|improve this question
1  
And empty catch block is a terrible idea! You won't even be notified if you have a problem, you should at least put some logging or e.printStackTrace() there! – Joachim Sauer May 11 '11 at 7:21
feedback

1 Answer

Yeah that won't work.

If you use a RecordEnumeration to iterate through your RMS (as you are), you must use RecordEnumeration.nextRecord() to retrieve the record data. You are using RecordStore.getRecord().

RecordEnumeration.nextRecord() advances your RecordEnumeration on by one. As you never call it, your loop:

while (re.hasNextElement()) {
    ...
}

will never end!

link|improve this answer
ok I change it, but the problem is still there. It doesnt explain why loop doesnt start.nacteno2 isnt write on console – ontik May 11 '11 at 8:30
You didn't explain that was your problem! – funkybro May 11 '11 at 9:53
Any exceptions being thrown? Put a System.out.println() in your catch block. – funkybro May 11 '11 at 9:55
no exceptions being thrown. when aplication is running the load and save command works fine but when i restat aplication loop in load command doesnt start. Propably record store havent any data. – ontik May 11 '11 at 10:25
Definitely record store hasn't any data. How are you saving it? – funkybro May 11 '11 at 10:37
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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