I'm sure that no problem with your first idea because all game works like that.
Bad stackmap means preverify error, I'm surprised how other thing can run if you have some problem in compiling chain?!
Type: Posts; User: kisember; Keyword(s):
I'm sure that no problem with your first idea because all game works like that.
Bad stackmap means preverify error, I'm surprised how other thing can run if you have some problem in compiling chain?!
I don't think if you can update the rms via ota without using internet?!
You may include an rms updater midlet in the suite, and the user may starts it recently, or register it via push registry and...
In most cases we don't even know which vendor provide the jvm, the performance tricks they are using are more secret.
The only way to ensure how it runs on real device if you run it on that device!
The emulators are totally useless in term of speed comparison with real device. You have to try it on phone, and see how fast it is. If you already have some results then use JBenchmark scores to...
You should read JSR-113 and wait at least a year.
If you are using Nokia Developer's Suite then it is configureable, see the configure button (under the emulate button).
This is a known issue. Each implementation have its own clock resolution and for S60 (at least 7650) it is 16-17[ms].
You may see the hidden files in any folder by enable this feature in the explorer - tools menu/Folder options.../view tab. You may also disable creating thumbs.db files in that panel by 'Do not cache...
The system automatically adds the Exit command on S60 devices, you can't get rid of that. The Ok or Erase will appear under the options menu (because you have 3 commands for 2 softkey). The only...
Are you sure if you preverified the classes?
I had troubles with jdk 1.5 too, try to compile with 1.4.
This usually happen if your manifest.mf is miscofigured or use unsupported apis. Check 6670 details for supported apis.
My guess is around cldc 1.0 vs 1.1
There is no 'easy' way. You have to implement the rotation.
The most lazy way is using a buffer image, then paint it with Graphics.drawRegion method, that is of course results a huge memory wastage....
Your thoughts are true, no way to run a jsr-205 app on your device.
Exapmple 1:
try {Thread.sleep(1000);} catch (Throwable t) {t.printStackTrace();}
Exapmple 2:
try { synchronized (this) {wait(1000);} } catch (Throwable t) { t.printStackTrace(); }
I tried the SVG RI emulator on tree different pc, but seems unstable, same happened with Nokia Prototype SDK for the Java™ Platform Micro Edition v4.0. The examples works perfectly, but my...
It sends a status code to the given url.
Here is a detailed description.
As API says prefetch() takes control over exclusive resource eg.: display or speaker. It is implementation dependent if the display is really exclusive resource.
I don't think if you can play two...
That is 130-320, I tested.
I guess it should be 160-320, but I didn't tried it.
Use this attributes in the jad file (and absolute url for the jar):
MIDlet-Install-Notify: http://anyhost.com
MIDxlet-Application-Resolution: 120-240,130-320
MIDxlet-Network: N
MIDxlet-API:...
Sorry, my fault, I didn't try that page just check if it exists.
Here is a link to a page where SE-K700 j2me applications are available.
And here is the page that I see on my screen:...
Yes, I checked it before the post was made, and right now. It is working for me, maybe it is cookie or session related.
Anyway, here is the root of the site: http://www.handango.com/sonyericsson/
I...
Just for note: Handago still hosts SE j2me applications. http://www.handango.com/sonyericsson/ItMeans.jsp?siteId=790
Here is an example how to set default date value for a DateField object:
Calendar myCalendar = Calendar.getInstance();
myCalendar.set(Calendar.YEAR ,2005);
myCalendar.set(Calendar.MONTH ,0);...
I welcome this topic because it could be a good place to share development and optimalization tricks.
I'm using UltraEdit - ANT + ANTENNA - .bat for development process. Antenna have preprocess...
Check the API of the Calendar class for more details.
Here is a little code snippet:
Calendar calendar = Calendar.getInstance();
calendar.setTimeInMillis(System.currentTimeMillis());
int...