I've just started out with J2ME and record stores. This seems to be the proper way to open a record store named "foo", not creating a new one:
RecordStore.openRecordStore("foo", false)
Fine, I get that. But where do I put the actual file for my program to find it? I'm using NetBeans 7.1.2.
you don't need to know where the file is, J2Me put the file somewhere, if the store already exists, you can open it, or use true in the open method to create it if it doesn't exist.
to write to your recordstore, use this :
to read :
and close your recordStore after each operation:
update
read your existing file as a normal file with :
and write the string to your recordStore with the code above.