what is difference between java and javax

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ambikasd
    New Member
    • Sep 2007
    • 12

    #1

    what is difference between java and javax

    Hi,

    I just wanted to know the difference between java and javax.
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by ambikasd
    Hi,

    I just wanted to know the difference between java and javax.
    Have you read a tutorial about this matter?

    kind regards,

    Jos

    Comment

    • dmjpro
      Top Contributor
      • Jan 2007
      • 2476

      #3
      Originally posted by ambikasd
      Hi,

      I just wanted to know the difference between java and javax.

      I think you want to know abut the Package concept.
      Just it is a naming convention.
      Java.something means it is located in the common lib folder but javax.something means it is located in ext lib ..... extra library.
      Actually these are nothing but naming convention.

      Kind regards,
      Dmjpro.

      Comment

      • JosAH
        Recognized Expert MVP
        • Mar 2007
        • 11453

        #4
        Originally posted by dmjpro
        I think you want to know abut the Package concept.
        Just it is a naming convention.
        Java.something means it is located in the common lib folder but javax.something means it is located in ext lib ..... extra library.
        Actually these are nothing but naming convention.

        Kind regards,
        Dmjpro.
        There is more to it: everything stored in the lib/ext doesn't need to be added to
        the classpath variable. But you're not allowed to just store everything in there
        because only packages that are about to be incorporated in the core classes
        set belong in there. It's more than a naming convention, it's a policy.

        kind regards,

        Jos

        Comment

        • ambikasd
          New Member
          • Sep 2007
          • 12

          #5
          Hi,

          thank you for the reply

          Comment

          Working...