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.
…
0
votes
Image.createImage problem in J2ME
Let us have a look at the docs: IllegalArgumentException is thrown
if imageData is incorrectly formatted or otherwise cannot be decoded
So the possible …
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 …
0
votes
j2me splash screen
You can use something like this:
class SplashScreenSwitcher extends Thread {
private Display display;
private Displayable splashScreen;
private Displayable nextScreen …
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
J2ME - Code once and run everywhere?
First of all, I'd like to say that most of the comments here are true, different JVMs may work slightly differently indeed and you should remember about APIs you are using.
However, there' …
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 …
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() …
0
votes
J2ME TextField Exception
This is definitely a JVM bug. If a TextField returned a string, it must be able to accept it. The only thing I can advice is to play a bit with the size of the field or the constraints …
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 …
0
votes
Java - Working with Date/Time in J2ME
I use the following code to get time:
String getDateString(Date date) {
Calendar calendar = Calendar.getInstance();
calendar.setTime(date);
int year = …
