Search Results

1
vote

j2me service discovery and discoverable same time

As far as I see you try to create simultaneously working server and client, right? Well, I think this is not gonna work, you have to make one phone server and the other one will be a client. …
0
votes

Debugging j2me on a Device

Sony Ericsson supports debugging on ebery phone at least since K700, this is done by using KDWP. UIQ 3 communicators also can be debugged the same way. By the way, it the latest phones by S …
0
votes

Print Stack Trace to Screen in J2ME

No, you can't. Stack trace is always printed to System.err and there is no way in CLDC to redirect System.err to somewhere else. …
2
votes

Best Java Obfuscation Application For Size Reduction

Strange that no one remembered that ProGuard can not just shrink and obfuscate the code, but optimize as well. The last versions allow to specify several passes for optimization (by default there i …
1
vote

J2ME backlight

This is not a direct control as in Nokia UI API, but there is a method in MIDP that controls backlight, it is Display.flashBacklight(int duration). Unfortunately, phones are not oblige …
0
votes

Do you know a good J2ME tutorial?

There is a very good page for developers at Sony Ericsson Developer Support. They have started to use wiki for their new articles, so there are …
3
votes

Trouble stopping a loop

Try adding keyword volatile to the variable running: private volatile boolean running = false; This is done to ensure that your thread al …