Javax packages

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • manikandan52
    New Member
    • Aug 2007
    • 1

    Javax packages

    hai guys........

    Im new to the forum.........I m having Jdk1.5.0 version........ I downloaded a simple code from net.......It imports javax packages.When i compiled it.It shows me an error no such packages.I cant understand anything.I donno whether it s an inbuilt package and we wanna set path.Or to download it and install..

    tel me how can i import javax packages.If i wanna to download where can i download from and how to install it.........

    Advance thanks to yu guys......
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by manikandan52
    hai guys........

    Im new to the forum.........I m having Jdk1.5.0 version........ I downloaded a simple code from net.......It imports javax packages.When i compiled it.It shows me an error no such packages.I cant understand anything.I donno whether it s an inbuilt package and we wanna set path.Or to download it and install..

    tel me how can i import javax packages.If i wanna to download where can i download from and how to install it.........

    Advance thanks to yu guys......
    The 'javax' packages belong in the $JAVA_HOME/lib/ext directory. It's Sun's
    way of postponing whether or not those packages should go or should be absorbed
    in the core packages. You don't have to mention those packages in your classpath.

    If some other package wants to use those 'javax' packages you have to install them
    in that ext directory of course.

    kind regards,

    Jos

    Comment

    Working...