• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

J2EE and Java Swing

 
Ranch Hand
Posts: 147
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am curious....
Once in a while I see job post that the requires sill are J2EE and Java Swing.
What are the difference between J2EE and Java Swing.
Thanks
 
lowercase baba
Posts: 13091
67
Chrome Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Kee Kee moon wrote:I am curious....
Once in a while I see job post that the requires sill are J2EE and Java Swing.
What are the difference between J2EE and Java Swing.
Thanks


What has your research turned up? a simple google search should get you started finding the answer...
 
Ranch Hand
Posts: 38
Eclipse IDE Tomcat Server Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
They can't be compared!
Java Swing (correct if i am wrong) is GUI library (part of JFC) for desktop based applications whereas J2EE targets Web and Enterprise applications.
 
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"J2EE" is the old name for Java EE = Java Enterprise Edition. It's a large set of specifications and APIs to build enterprise Java applications, for example web applications (servlets, JSPs, JSF etc.) and many other kinds of server side Java software.

Swing is an API for building desktop GUI applications with Java.

The two are totally different things, for different purposes.
 
Sheriff
Posts: 3837
66
Netbeans IDE Oracle Firefox Browser
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The two can come close together when you build a three-tier thick-client application, which usually employs Webstart technology to launch the thick client. A small company which happens to do so might want to employ a developer who knows both of these disparate worlds.
 
reply
    Bookmark Topic Watch Topic
  • New Topic