Tagged Questions
4
votes
8answers
5k views
Best practice for storing large amounts of data with J2ME
I am developing a J2ME application that has a large amount of data to store on the device (in the region of 1MB but variable). I can't rely on the file system so I'm stuck the Record Management System ...
2
votes
0answers
72 views
Problems with RMS to store persistent data
1.Problem on emulator:
I am launching my midlet app at first time is to store some data and then I am restarting it at second time is to read the stored data. It is working well in first two cases ...
2
votes
1answer
203 views
How do I read an RMS file from a Nokia S40 device?
I have an RMS file generated on an S40 Nokia phone - is there any way of reading this on a PC? I'm trying to debug an issue on the phone, which seems to be related to the contents of the RMS, and ...
2
votes
5answers
3k views
Data in J2ME RecordStore does not persist across sessions
I'm building a mobile app with J2ME, and I've found that the data I write into a RecordStore can be accessed while the program is still running but it is lost after quitting and restarting it. No ...
1
vote
1answer
108 views
How do you clear the RecordStore of your midlet in Netbeans?
I find that when I try to add some new records, the already exist in the recordstore of the midlet, but I don't know where do I find the option to clear the midlet's recordstore in its emulator.
...
1
vote
2answers
201 views
j2me Find application mode, is it idle or not
I want to send stored rms data using http connection when application is on
idle mode
so when user is not doing anything with application at that time my thread will invoke and send RMS data to ...
1
vote
1answer
985 views
Java Micro Edition (J2ME) - Delete element from Record Store
I have a record store which holds a list of shopping items i am currently serialising the data like so
** (inside) ItemClass **
ByteArrayOutputStream byteOutputStream = new ...
1
vote
1answer
225 views
Is it possible to open and edit 2 or more RecordStores at the same time in j2me?
I was wondering if it is possible in j2me to have 2 or more recordStores open at the same time. I basically want to be able to add/remove records from 2 different recordStores in the same execution of ...
0
votes
0answers
108 views
Determine Amplitude of Sound From Microphone
I am trying to determine the amplitude of an instrument (trumpet, guitar, etc.) that is being recorded using the Java Sound API and display an amplitude vs. time graph. I haven't had much experience ...
0
votes
1answer
72 views
saving date to RMS in Java ME
I would like to save a Date object into an RMS in Java ME. The way I would like to do it is by converting the date first to some String/int/any primitive data type value that the RMS can save. I then ...
0
votes
1answer
109 views
Java ME record store problem
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;
...
0
votes
1answer
217 views
0
votes
3answers
374 views
delete single line in a text file?
I have created j2me application for read write of text file
now at time of reading I read one line and send it to server. after that I want to remove that line from text file.
I am not getting how ...
0
votes
1answer
306 views
how to transfer the records in rms(j2me) to j2se through bluetooth
NOW here is the coding for j2me mobile for sending the string:
String s="hai";
try{
String url = "btspp://001F81000250:1;authenticate=false;encrypt=false;master=false";
StreamConnection ...
0
votes
1answer
146 views
Is RMS only temporary storage?
Is the Record management System in J2ME a temporary storage system? Does it vanish after the application is closed?
0
votes
1answer
243 views
how to connect to database in j2me?
Hello
I am student and developing a mobile quiz game by using j2me and netbeans6.9.I have to store the questions and answers in database and i want to connct my MIDlet to database.
Can anyone help ...
0
votes
1answer
209 views
Problem with RMS and Websphere 6.1 32 bit
I'm facing a problem with Websphere and RMS, followings are what I have:
Windows 2003, sp2, 64 bit, enterprise edition.
Microsoft Office word 2003 sp3.
The machine is connected to a domain, and I ...
0
votes
1answer
1k views
Java Micro Edition (J2ME) - Update Record using recordstore enumeration
I have a record store of items which have (name, quantity, owner, status)
Now when the user triggers an event I want to set the status of all items in my RecordStore with "purchased"
re = ...
0
votes
3answers
1k views
Using RecordStore in Java J2ME
I am currently doing some J2ME development. I am having a problem in that a user can add and remove elements to the record store, and if a record gets deleted, then that record is left empty and the ...
0
votes
4answers
981 views
Store data with MIDP RMS and retrieve in PC
How can I retrieve data stored using MIDP's RMS? I would like to collect some data in the handset and then be able to process it in the PC's application.
If I can't do it using RMS, is there a way to ...
0
votes
0answers
906 views
Why can't I update my J2ME RecordStore?
I basically want my Midlet the ability to edit records.
I have this code
the information is added as follows
protected void searchForNameToEdit()
{
Editrecord.deleteAll();
try
...