> Is there a PC emulator for java mobile programs?
>
> I need a program which can be run mobile .jar files
>
> Until now I use netbeans, but I need a very small and easy program for
> presentation of a mobile program.
Yes. Get the "WTK" from Sun for fairly generic ones. Nearly all mobile
phone vendors also have their own emulators that let you try out
features specific to their phones. These can be embedded into
development environments (e.g., see EclipseME), but can also run stand-
alone.

Signature
Chris Smith - Lead Software Developer / Technical Trainer
MindIQ Corporation
David N. Welton - 02 Jul 2006 09:53 GMT
>> Is there a PC emulator for java mobile programs?
>>
[quoted text clipped - 8 lines]
> development environments (e.g., see EclipseME), but can also run stand-
> alone.
If you're looking for something simple and basic, microemulator might be
enough for you - it runs a lot of my MIDP1.0 code quite well, and has
the advantage that it's free software:
http://www.barteo.net/microemulator/

Signature
David N. Welton
- http://www.dedasys.com/davidw/
Linux, Open Source Consulting
- http://www.dedasys.com/
> Is there a PC emulator for java mobile programs?
>
> I need a program which can be run mobile .jar files
>
> Until now I use netbeans, but I need a very small and easy program for
> presentation of a mobile program.
As someone else said - try the WTK (wireless toolkit) from Sun.
Beware - something working fine in the emulator on your desktop is no
guarantee it will be happy once it gets onto a phone!
In particular, be aware of threading issues - you can't hog the
processor at certain points (e.g. startApp), or most phones will sulk -
you have to spawn off a thread and return immediately.
Also, different phones have different 'quirks' (a bit like web browsers
then!).
lex