is it possible to run java SE or Java ME app on android ???
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you search for “J2ME runner android” on Google, you’ll find some hits for projects which claim to allow you to run J2ME projects on Android.
e.g. http://www.netmite.com/android/
I’m not sure what you mean by Java SE in this case. Technically Dalvik is a lot closer to J2SE than to J2ME. A large set of the APIs are there, and code will likely cross-compile without issue. You can even include a lot of J2SE JARs in your project and use the build tools to re-compile them from bytecode to DEX.
http://en.wikipedia.org/wiki/Dalvik_(software)
The infrastructure is vastly different, however, and you’re not going to get an application written/compiled for a desktop running a standard JVM to work on Android without changes and recompiling.