BA519 Electronic Enterprise Engineering Using Java


<< back to courseware demo page
- This online lecture is for demonstration purposes

The lecture is to be used only in conjunction with the required text for this course: "Java Tutorials" Sun Microsystems, Inc. The copyright of the materials and some illustrations is held by Sun Microsystems.

Lesson 1:
Java Technology


 

This lesson introduces the basic building blocks of Java technology and the definitions used to construct Java platform.


After this lesson, you will be able to

Estimated lesson time: 45 minutes


Java Technology

Java technology is both a programming language and a platform.

The Java Programming Language

The Java programming language is a high-level language that can be characterized by all of the following buzzwords:

 

  • Simple
  • Architecture neutral
  • Object oriented
  • Portable
  • Distributed
  • High performance
  • Interpreted
  • Multithreaded
  • Robust
  • Dynamic
  • Secure
  •  With most programming languages, you either compile or interpret a program so that you can run it on your computer. The Java programming language is unusual in that a program is both compiled and interpreted. With the compiler, first you translate a program into an intermediate language called Java bytecodes —the platform-independent codes interpreted by the interpreter on the Java platform. The interpreter parses and runs each Java bytecode instruction on the computer. Compilation happens just once; interpretation occurs each time the program is executed. The following figure illustrates how this works.

    You can think of Java bytecodes as the machine code instructions for the Java Virtual Machine (Java VM). Every Java interpreter, whether it's a development tool or a Web browser that can run applets, is an implementation of the Java VM.

    Java bytecodes help make "write once, run anywhere" possible. You can compile your program into bytecodes on any platform that has a Java compiler. The bytecodes can then be run on any implementation of the Java VM. That means that as long as a computer has a Java VM, the same program written in the Java programming language can run on Windows 2000, a Solaris workstation, or on an iMac.

    The Java Platform

    A platform is the hardware or software environment in which a program runs. We've already mentioned some of the most popular platforms like Windows 2000, Linux, Solaris, and MacOS. Most platforms can be described as a combination of the operating system and hardware. The Java platform differs from most other platforms in that it's a software-only platform that runs on top of other hardware-based platforms.

    The Java platform has two components:

    You've already been introduced to the Java VM. It's the base for the Java platform and is ported onto various hardware-based platforms.

    The Java API is a large collection of ready-made software components that provide many useful capabilities, such as graphical user interface (GUI) widgets. The Java API is grouped into libraries of related classes and interfaces; these libraries are known as packages.

    The following figure depicts a program that's running on the Java platform. As the figure shows, the Java API and the virtual machine insulate the program from the hardware.

    Native code is code that after you compile it, the compiled code runs on a specific hardware platform. As a platform-independent environment, the Java platform can be a bit slower than native code. However, smart compilers, well-tuned interpreters, and just-in-time bytecode compilers can bring performance close to that of native code without threatening portability.
     

    The Product Functions of  Java Technology

    There three types of  programs written in the Java programming language:

    If you've surfed the Web, you're probably already familiar with applets. An applet is a program that adheres to certain conventions that allow it to run within a Java-enabled browser.  An applet can not do any kind of disk input/output operation to local client computers. It has very limited memory access capability to local computer so that it can not interfere with local computer's operation either. So applets are safe for the users on the Internet.

    However, the Java programming language is not just for writing cute, entertaining applets for the Web. The general-purpose, high-level Java programming language is also a powerful software platform. Using the generous API, you can write many types of programs. An application is a standalone program that runs directly on the Java platform. A special kind of application known as a server serves and supports clients on a network. Examples of servers are Web servers, proxy servers, mail servers, and print servers.

    Another specialized program is a servlet. A servlet can almost be thought of as an applet that runs on the server side. Java Servlets are a popular choice for building interactive web applications, replacing the use of CGI scripts. Servlets are similar to applets in that they are runtime extensions of applications. Instead of working in browsers, though, servlets run within Java Web servers, configuring or tailoring the server. Besides, servlet also has the powers of any application on the server side, and the safety features of  applets on the client side.

    How does the API support all these kinds of programs? It does so with packages of software components that provide a wide range of functionality. Every full implementation of the Java platform gives you the following features:

    The Java platform also has APIs for 2D and 3D graphics, accessibility, servers, collaboration, telephony, speech, animation, and more. The following figure depicts what is included in the Java 2 SDK.


    The Objectives of Java Technology

    Java is likely to make your programs better and requires less effort than other languages. It is believed that Java technology will help you do the following:

    JavaBeans Technology

    Review Exercise 1.1: Java Definitions

    Match the concepts in the numbered list with the definitions that follow it.

    Concepts

    1. Java Compiler
    2. Java Virtual Machine
    3. Byte Codes
    4. Java APIs
    5. Java Applet
    6. Java Application
    7. Java Servlet
    8. Java-enabled browser
    9. Java Platform
    10. Java Interpreter

    Definitions

    1. parses and runs each Java bytecode instruction on the computer
    2. translates a program into an intermediate language called Java bytecodes
    3. is an Internet browser installed with Java Virtual Machine plugins
    4. is a large collection of ready-made software components
    5. is the machine code instructions for the Java Virtual Machine
    6. is a software development and execution environment
    7. is a program that adheres to certain conventions that allow it to run within a Java-enabled browser
    8. can be implemented by any Java interpreter, whether it's a development tool or a Web browser that can run applets.
    9. is a standalone program that runs directly on the Java platform
    10. can almost be thought of as an applet that runs on the server side, and has the powers of any application on the server side, and the safety features on the client side.


       

    Answer