• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Defining java terms

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is J2EE,J2ME and other such terms?
What are the differences?
 
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
J2SE = Java 2 Standard Edition: the normal version of Java which runs on desktop and laptop computers
J2EE = Java 2 Enterprise Edition: an extension to J2SE for server-side Java programming
J2ME = Java 2 Micro Edition: a special version of Java for mobile phones (which is getting obsolete soon, in my opinion, while phones get more and more powerful)

Try Googling for "what is J2EE" etc. for more information.
 
Ranch Hand
Posts: 65
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
here is one difference besides the definition
J2EE includes the class required for J2EE development(example jsp,servlet,ejb api's etc.)
To use it you also need J2SE, think of it as an add on module like for J2SE.
you will more clear about this, when try to download the J2EE kit or J2SE kit from sun website
they will clearly mention you the components each will contain.
 
Sheriff
Posts: 22784
131
Eclipse IDE Spring VI Editor Chrome Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Note that the 2 has been dropped these days: JSE, JEE, JME.
 
reply
    Bookmark Topic Watch Topic
  • New Topic