Core Java

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jith87
    New Member
    • Jul 2007
    • 58

    Core Java

    What is meant by Core Java?What is meant by Advanced Java?What is the difference between both? Is Core Java useful to connect a JSP front end and MySQL back end?
  • Nepomuk
    Recognized Expert Specialist
    • Aug 2007
    • 3111

    #2
    Originally posted by jith87
    What is meant by Core Java?What is meant by Advanced Java?
    Core Java: "core java is nothing but dealing with basic programming, collections, arraylist, linked list etc.. once you know all this stuff then you know about core java." (Source)

    Advanced Java would then be anything, that is more than Core Java.

    Originally posted by jith87
    Is Core Java useful to connect a JSP front end and MySQL back end?
    As Core Java are the basics, you'll certainly need it to do any task like that.

    Comment

    • jith87
      New Member
      • Jul 2007
      • 58

      #3
      Core and Advanced Java

      Does Core Java mean the level of the J2SE standard edition and Advanced Java mean the level of the J2SE enterprise edition?

      Comment

      • praveen2gupta
        New Member
        • May 2007
        • 200

        #4
        Originally posted by jith87
        Does Core Java mean the level of the J2SE standard edition and Advanced Java mean the level of the J2SE enterprise edition?
        Hi
        J2EE is the java web technologies. It is used to develop web applications. In this you will find the topics of JSP, Servlets,EJB,Ja vaBeans etc
        In The advance java you can find Swings,Beans,Se rvlets,Sockets, JDBC,RMI etc. core java and advanced java is
        defined topic wise in various universities curriculam. There is no such division by the sun Inc. J2SE contains topics of both core as well as advance java.

        Comment

        • r035198x
          MVP
          • Sep 2006
          • 13225

          #5
          Originally posted by jith87
          What is meant by Core Java?What is meant by Advanced Java?What is the difference between both? Is Core Java useful to connect a JSP front end and MySQL back end?
          Just a buch of terms if you ask me.
          Core Java is normally used to refer to the standard Java packages that form the J2SE JDK. Anything that uses those classes alone is written using core Java.
          Advanced Java is mostly used to refer to certain extensions of the J2SE. Most commonly J2EE is refered to as advanced Java.
          To connect to MySQL you need to use JDBC which is part of the J2SE packages therefore that requires core Java. To display the results in a JSP, however, you need the JSP to be running on some server and you need J2EE (JSP, Servlets, EJBs).

          Edit @OP Please don't flood the forum with the same question. Double posting is against site rules and can have consequences

          Comment

          Working...