Difference Between java & javax

Answers were Sorted based on User's Feedback



Difference Between java & javax..

Answer / kani

javax is an extension of java.
some new packages like servlet, EJB, swing, etc are included
in javax.

Is This Answer Correct ?    52 Yes 4 No

Difference Between java & javax..

Answer / jigs

A package is introduced as an addition to an existing JRE,
it comes in as javax. If it's first introduced as part of a
JRE (like NIO was, I believe) then it comes in as java. Not
sure why the new date and time API will end up as javax
following this logic though... unless it will also be
available separately as a library to work with earlier
versions (which would be useful).
A classloaders are set up to only allow classes within
java.* to be loaded from rt.jar or something similar.
(There's certainly a check in ClassLoader.preDefineClass.)

Is This Answer Correct ?    19 Yes 8 No

Difference Between java & javax..

Answer / sarfaraz ahamad

We know that java is a folder that contains specific JRE and
APIs and javax is letest folder that also contain J2EE
related JRE and APIs, So we can say both are diff folders
those contains diff diff purposes related APIs.

Is This Answer Correct ?    7 Yes 5 No

Difference Between java & javax..

Answer / veerendra kumar

javax is an extension of java,JAVA language contains set of
predefined packages,thouse packages are classified into two
types according to Sun Microsystem,they are JSE Packages,JEE
Packages,if we want to import JSE PACKAGES we need java,
even though JSE contains one Technology like JDBC some times
we need to work with javax,and all JEE Technologies we must
use import javax like(SERVLETS,JSP,EJB)

Is This Answer Correct ?    5 Yes 4 No

Difference Between java & javax..

Answer / vikas jaiswal

Originally, everything that was part of the standard API was part of the java package, whereas everything that was not part of the standard API was released under the package name javax. Hence, packages essential to the API was java, while javax contained the extensions to the API. It can even be said that javax, is just java with an x, which stands for extension.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Advanced Java Interview Questions

how to create Calculator GUI using Gridbaglayout as like as Window Calculator??????????? (Open calculator Go-->Run-->type calc-->Enter)

1 Answers   TCS,


difference. between List and Set?

2 Answers   Campus Interaction, HCL, Infotech,


what is handle?

0 Answers  


can i call multipule form beans in Action class?

1 Answers   Wipro,


What are different types of controls in AWT?

11 Answers   IBM,






What are the types of scaling?

0 Answers  


What is the O/P of the below Code Snippet ? And how does it imply the concept of call-by-value/call-by-reference. (Note : Pls ignore syntx errors) public class One { sop ("Into One--"); } public class Two extends One{ sop ("Into Two--"); } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(One.a); sop(Two.a); sop(One.t); sop(Two.t); } }

2 Answers   Wipro,


How do you download stubs from a Remote place?

1 Answers  


How has the sandbox changed with Java 2?

2 Answers  


when A client sent a request to the server to open facebook page and close the browser after this request .at that time the same user do login by using a different browser then that session id will exist or not for the same client??

0 Answers   Ducat,


what is an isolation level?

0 Answers  


What is source and listener?

1 Answers  


Categories