Presentation is loading. Please wait.

Presentation is loading. Please wait.

JAVA Java is a programming language and computing platform first released by Sun Microsystems in 1995. It was first developed by James Gosling at Sun Microsystems,

Similar presentations


Presentation on theme: "JAVA Java is a programming language and computing platform first released by Sun Microsystems in 1995. It was first developed by James Gosling at Sun Microsystems,"— Presentation transcript:

1 JAVA Java is a programming language and computing platform first released by Sun Microsystems in 1995. It was first developed by James Gosling at Sun Microsystems, which is now a part of Oracle Corporation.James GoslingSun MicrosystemsOracle Corporation Java applications are usually compiled to bytecode (class file) that can run on any Java Virtual Machine (JVM).applicationscompiledbytecodeclass fileJava Virtual Machine Java is a pure object-oriented language. This means that everything in a Java program is an object and everything is descended from a root object class. The Java programming Language evolved from a language named Oak. Java compilers do not produce native object code for a particular platform but rather ‘byte code’ instructions for the Java Virtual Machine (JVM). Making Java code work on a particular platform is then sim ply a matter of writing a byte code interpreter to simulate a JVM. What this all means is that the same compiled byte code will run unmodified on any platform that supports Java.

2 Java class library Rich Standard Library - One of Java’s most attractive features is its standard library. The Java environment includes hundreds of classes and methods in six major functional areas. Language Support classes for advanced language features such as strings, arrays, threads, and exception handling. Utility classes like a random number generator, date and time functions, and container classes. Input/output classes to read and write data of many types to and from a variety of sources. Networking classes to allow inter-computer communications over a local network or the Internet. Abstract Window Toolkit for creating platform-independent GUI applications. Applet is a class that lets you create Java programs that can be downloaded and run on a client browser.

3 Difference between JRE and JDK The jre is intended only for executing already compiled java class and lacks a compiler

4 Setting up the environment variables PATH=java_install_dir/bin CLASSPATH=java_install_dir/lib JAVA_HOME=java_install_dir NOTE: java_home refers to the base sdk installation directory Note: to verify that the java setup is correct open your command prompt window and type: Java –version Javac -help

5 The –d option of javac javac will automatically put packaged classes in subdirectories that match the package name However javac has an option (-d) that lets you designate a different lcation for class files e.g. javac –d install_dir/webapps/ROOT/WEB- INF/classes HelloServlet2.java


Download ppt "JAVA Java is a programming language and computing platform first released by Sun Microsystems in 1995. It was first developed by James Gosling at Sun Microsystems,"

Similar presentations


Ads by Google