• 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
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Difference between Core & Desktop Java

 
Ranch Hand
Posts: 72
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what is the difference between
core and desktop java.
is it separate j2sdk for these?
 
Ranch Hand
Posts: 194
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Ramakrishnan,

what do you mean by "desktop java"?

Java classes are organized into packages, which belong together in some way. The core classes are packaged in the java.* pages. The most important ones are the java.lang package (e.g. Object, String), the java.io package, and the java.util package.

Java contains an Abstract Windowing Toolkit (AWT) for creating basic graphical user interfaces (GUIs). The classes for implementing AWT-based GUIs are contained in the java.awt package.

However, AWT has only a limited scope. This is the reason why Swing has been developed for creating desktop applications. The Swing classes can be found in the javax.swing package (javax means "Java extensions").

Does this answer your question?
 
Ranch Hand
Posts: 1923
Scala Postgres Database Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Perhaps suns 'java desktop' is meant here.
AFAIK it's more or less a collection of applications, running on a linux-system, perhaps meant to be the realization of the 'thin client' or 'net box' or something. Maybe I'm pretty wrong...

I like linux, and I like java - but I don't like the idea of a java-desktop.
 
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
the latest news says Sun's Java Desktop (or better known as Java Enterprise System (JES) is offered not only in Solaris, Linux, but Windows and other *nix. They charge 100 bucks/ per user/ per year though.

http://www.internetnews.com/ent-news/article.php/3386451
 
reply
    Bookmark Topic Watch Topic
  • New Topic