• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

J2ME - highlevel overview

 
Ranch Hand
Posts: 362
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is a very open question really for anyone that would care to share a little of their experience of J2Me with me.

Looking at a possible Java Mobile developer role and I'd like to know a few things about J2ME development...

Mainly I'm looking at things like:
- What IS NOT in J2ME that is in say J2SE? From what I can see Collections seem to be gone presumably because of the limitations in memory
- What IS in J2ME
- Does it differ much from standard J2SE/J2EE development or is it basically the same just for mobile technologies?

Anything really to give me an idea of what a J2ME developer's world is like

:-D

Cheers

KS
 
Sheriff
Posts: 22815
132
Eclipse IDE Spring Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Let's move this to our mobile forum.
 
Saloon Keeper
Posts: 28319
210
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The full roster would be too long to cover here. It's not just missing classes - there are methods even in basic classes like java.lang.String that are simplified or omitted in J2ME. And, of course, neither AWT nor Swing is available. Instead there's the lcdui. But in addition to differences between J2ME and JRE, you have the differences between the CDC and the CLDC. http://java.sun.com/javame/index.jsp

The correspondence is good enough for the most part that I just develop like it was for a JRE (UI notwithstanding), and when I run into something not supported, I look for alternatives.

One significant difference is in how you package. But that's covered in the kit from Sun.
 
My honeysuckle is blooming this year! Now to fertilize this tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic