Search Results

4
votes

Making a J2ME Midlet sleep without threads?

I didn't understand whether you mean putting midlet in paused state or just stopping execution for specified time. If it's the latter, actually I don't undesrtand, why you don't want to use …
0
votes

Store data with MIDP RMS and retrieve in PC.

I'd go for JSR 75. It is not actually quite true that it is supported in a limited number of phones, almost all modern phones which don't belong to low-end category support this AP …
1
vote

Multiple instances of j2me midlet problem

This is definitely a JVM bug. startApp() should be called only once at startup and can't be called again until pauseApp() is called or you call notifyPaused() …