Java application on mobile phone :-)
mathieu7530
-
toto -
toto -
Hello,
I would like to know if it is possible to put the applications I create in Java language using Eclipse on my mobile? And could you tell me how that is possible?
LG KS20 (Windows Mobile and a "mobile java" directory)
Thank you
I would like to know if it is possible to put the applications I create in Java language using Eclipse on my mobile? And could you tell me how that is possible?
LG KS20 (Windows Mobile and a "mobile java" directory)
Thank you
Configuration: Windows 7 / Safari 532.5
2 réponses
<translation>
Well, I have the Java documentation and the Java runtime as I use at school for programming... Do I need to download it and what will it be useful for?
</translation>
Well, I have the Java documentation and the Java runtime as I use at school for programming... Do I need to download it and what will it be useful for?
</translation>
So a little explanation.
The applications that run on a mobile (Blackberry, Nokia, etc.) run on a specific version of the JVM (Java Virtual Machine) dedicated to mobile devices (hence the name J2ME for Java Micro Edition) as opposed to what we can call "classic" Java J2SE.
J2ME is specifically designed for phones, and is much more "compact".
Thus, you will deduce that your application compiled in J2SE will not run on your mobile.
The solution available to you is to compile your application in J2ME, but since J2ME has many fewer classes, I would be surprised if it compiles without errors. You will therefore need to make modifications to your code so that your application compiles in J2ME.
The applications that run on a mobile (Blackberry, Nokia, etc.) run on a specific version of the JVM (Java Virtual Machine) dedicated to mobile devices (hence the name J2ME for Java Micro Edition) as opposed to what we can call "classic" Java J2SE.
J2ME is specifically designed for phones, and is much more "compact".
Thus, you will deduce that your application compiled in J2SE will not run on your mobile.
The solution available to you is to compile your application in J2ME, but since J2ME has many fewer classes, I would be surprised if it compiles without errors. You will therefore need to make modifications to your code so that your application compiles in J2ME.