Session 1 Lecture Notes for First Course in Java      

Session Topic Homework due on the next session
1

(syllabus and calendar)

Ch. 1: Java Fundamentals
  

zip of examples

Download SDK, run HelloWorld, and write a program that does arithmetic
Homework Assignment
PATH and CLASSPATH (often important for getting set up)

Explanation of Schedule and Syllabus

Glossary: Definitions of Key Terms in Java - Sun's comprehensive list

Demonstration of a Java program

Why Java?

Six Major Releases of Java

“Hello World” Java code and demonstration

What is Java Programming?

Applications, Applets and Servlets

Java compared to C and C++

Java and C#

Compiling and running

Platform Architecture

New Features of J2E 5.0

Syntax and reserved words

PATH and CLASSPATH (often important for getting set up)

Links


Quiz

Homework Assignment


Demonstration of a Java program

We could follow along this set of demonstration programs:

http://www.herbschildt.com/getting_started_with_Java.htm


And we see a possible use the array of command-line strings.

Here's the same thing, but with a for loop to process multiple command-line arguments.

This source code must be in a file named CommandLine.java.

Now, let's try to compile and run the program.

At the command line, I types a list of strings that the program stored in an array named applesauce.

What is an array? An ordered collection in which each item can be referred to by an index.
In a RAID array of hard disks, we have a 1-based array, with the lowest index value being 1.
Each item in the array is of the same type (hard disk) and each item can store a different value (different data).


Should it be possible to "populate" this array of hard disks in various manners?
For example, can I have an array of hard disks in which Bay 5 is empty?
Can the entire array be empty of hard disks and yet still exist an array?
What is the capacity (or length) of the array?
In CommandLine.java, can I have an empty string for one of my elements?

Now, let's run a program that does some arithmetic.


Why Java?

Traditionally, software programs have been written in source code and then compiled into machine code that talks directly to the operating system that drives the microprocessor in the computer. This means that traditional programs depend on, and are bound to, a particular type of hardware (the microprocessor), a particular platform. Porting from one platform, or operating system, to other, is traditionally time-consuming and prone to errors. The Java platform is a virtual platform that mitigates this dependency by providing a model in which software is written and compiled, and can then be transmitted over a network and run anywhere by a fully compliant virtual machine. Whereas it is not practical for end-users of, say, a Windows machine, to add a Macintosh chip and motherboard to their laptop, it is feasible for a Unix, Linux, Windows, Macintosh, or even a hand-held personal assistant to install the application that provides a Java virtual machine (JVM). Now the internet becomes a viable distribution medium for programs that are intended to run on multiple platforms.

This model provides the additional benefit of heightened security, both because programs can be verified by the client's virtual machine after they have been transmitted over a network, and because the client's virtual machine can run programs in a secure "sandbox" that prevents certain destructive behaviors.

Software programmers have embraced the Java platform because it reduces the cost and time required to write and support software code. They are no longer required to rewrite software to function on different computers with different operating systems and microprocessors. Companies and organizations deploying applications favor Java technology because it minimizes the cost of purchasing or modifying different versions of software applications for the various types of computers and servers within their networks.

The promise of Java: http://java.sun.com/docs/books/tutorial/getStarted/intro/changemylife.html

Six Major Releases of Java

Types of languages
Object-oriented programming Procedural Web scripting Page description Data description
Java, C++, SmallTalk, Objective-C, C# C, Basic, Fortran, Cobol, Lisp, Perl JavaScript, VBScript HTML XML

The Runtime

The runtime environment is for users who only need to run existing Java bytecode and do not write the code. http://java.sun.com/j2se/1.4/  The Java Runtime Environment consists of the Java virtual machine, the Java platform core classes, and supporting files. It is the runtime part of the Java 2 SDK, but without the development tools such as compilers and debuggers. (The JRE download is only 8 MB, compared to 38 MB for the SKD download.) The installer for certain programs might install the runtime environment so that end users can run the application.


Hello World Code (preview)

public class HelloWorld 
{
  public static void main(String[] args)
  {
    System.out.println("Hello World");
  }
}

Explanation of each token in the application:


Let's see a different application that puts the array of command-line strings into action:

Command-line args

The output is:

args[0]: sky
args[1]: is
args[2]: blue
args[3]: 4
args[4]: you

In this application, whatever the user types after invoking java with the application identifier is stored into
the array of command line arguments. The for loop processes the array of command-line arguments.

Demonstrations:


What is Java Programming?

Java programming is the process of creating:

Sun Microsystems likes to think of the Java platform as a target for software development, much as traditionally software developers targeted an operating-system or processor-based platform such as MacOS/Motorola, Windows/Intel, or Sun/Sparc.

To develop code for the Java platform, the software developer uses: 

Some people say JDK (Java Development Kit), and this is the same as the Java SDK (Software Development Kit).
However, the JRE (Java Runtime Environment) is a subset of the SDK for running Java programs that does NOT include development tools.

To run your code, you and whoever uses your code will need:


Applications, applets, and servlets

An application is software that runs on top of the operating system, has a specific purpose, and usually allows an end-user to interact. An example of an application is Microsoft Word. On the other hand, the software that runs your printer (a "driver") is something for the operating system or an application, rather than for the human user.

Applets run in a browser

Java introduced the concept of applets, which are applications that can run inside of a web browser on the client computer. A web browser is an application. 

An applet is a "safe" quasi-application that can only run inside of another, very specific application. Some of the key restrictions on an applet 

These restrictions are meant to give web surfers confidence to download applets from the web, even if the user does not know the company that created the applet

Signed applets

If an applet provider registers a specific applet with a registration company, the "signed applet", if you accept it, can have access to your file system and the native operating system. This is called a "signed applet".   http://mindprod.com/jgloss/signedapplets.html#SIGNEDAPPLETS

Note: A Java application, like any application, does have access to your file system.

Java Plug-in

http://java.sun.com/products/plugin/index-1.4.html
The Java Plug-in allows you to run applets using Sun's Java 2 Runtime Environment, Standard Edition (JRE) instead of the web browser's default virtual machine. Sun's JRE provides a Java CompatibleTM environment for today's widely adopted web browsers. That means consistency and reliability when running applets.

The Plug-in can give the browser support for Swing. Swing is part of the Java 2 Foundation Class library that extends the Java 1 Advanced Windowing Toolkit (AWT) to provide new GUI components and features, better event handling, and selectable look and feel]

Unless Internet Explorer is used in conjunction with the Java 1.4 plug in, your users are limited to the functionality of Java 1.1  http://mindprod.com/jgloss/ie.html

Servlets run on the server

http://java.sun.com/products/servlet/index.html
JavaTM Servlet technology provides web developers with a simple, consistent mechanism for extending the functionality of a web server and for accessing existing business systems to give them a web interface. A servlet can almost be thought of as an applet that runs on the server side -- without a face. Java servlets have made many web applications possible.


Java compared to C, C++

A computer platform is the combination of the operating system and the central processing unit (CPU). 

Examples of operating systems include 

Examples of CPUs include 

A standard, compiled application runs machine code that is specific for a platform. Machine code is the raw zeros and ones that a computer "chip" understands. If you want your UNIX application to run on Windows, for example, you must "port" the code and recompile it using a compiler that produces machine code that is "native" to the target CPU. Porting costs developer time and some platforms have different kinds of data types or a different number of bytes for the same data type.

Platform independence

Java code is different from standard, compiled code. You compile your Java source code into a special language, "bytecode", that a special application, the Java virtual machine (JVM), interprets. With one binary code (bytecode) for one virtual machine for all the operating systems, there is no need for porting. Each hardware platform, however, still needs an interpreter to convert the bytecode into native machine code.

The Java interpreter (java) is different from the "HotSpot" just-in-time (JIT) compiler. The interpreter interprets bytecode and makes application programming interface (API) calls into the native operating system, for example, calls to Win32API. The JIT compiler can improve performance with optimization capabilities that allow it to compile into native machine code parts that are most heavily used. 

The JVM is an application that emulates a computer. It translates Java bytecode into native machine code.

There is a JVM for Mac OS, UNIX, Linux, and Windows. This means that the same source code should be valid for multiple platforms. You do not need to "port" the application to another platform. It should be "write once, run anywhere", assuming there is a JVM for that platform.

There are even JVMs for smaller platforms, such as the PalmOS that runs on the PalmPilot.

Advantages and disadvantages of the Java platform compared to C++

Pro Con
Less likely to create careless bugs (memory leaks, pointer errors) performance is slow because of CPU-intensive interpretation or compilation of byte code into machine code
Relatively platform independent: "write once, run anywhere", which is particularly valuable if the server could be Unix, Linux, or Windows, and you don't which it will be vision is not fully realized
write once, debug everywhere
strict object-oriented model; cannot mix with procedural code, so coding is more straightforward  can use more CPU and memory (C++ can be optimized with lower-level code)
Dynamic linking: supports introducing new objects at runtime without recompiling everything [RMI (remote method invocation)] slower because of look up; mitigate with JIT compilation

For more on static versus dynamic linking: http://www.cpp.atfreeweb.com/StaticVersusDynamic.html


Java and Microsoft C#

From Sun's point of view, Java 1.4.1 is part of Sun's J2EE platform. C# is a Microsoft programming language that closely resembles Java. C# is for use in Microsoft's .NET platform, which relies on libraries of the Microsoft Windows operating system. Insofar as .NET has an intermediate language (IL) and a common language runtime, there is a something analogous to a JVM-like portability, but only within the Microsoft family of programming languages, such as Visual Basic, J# (Microsoft's version of Java), and C#, and only for use on Microsoft operating systems. Whereas the Java platform offers portability across operating systems, the .NET platform is an integration within Microsoft's "family" of languages. From Microsoft's point of view, .NET frees you from being confined to any one language, such as Java, and allows you to use whatever Microsoft language you freely choose. For example, VB.NET syntax might be most convenient for a developer of end-user applications and C# syntax might be a bit more familiar for the C++ developer working with pointers. However, all of the .NET languages actually have the same capabilities.

.NET source code in any .NET language >> IL (analogous to bytecode)  >> runtime interpretation to native code

For details, see http://genamics.com/developer/csharp_comparative.htm.

The virtues of Java (as in theory of C#): http://java.sun.com/docs/overviews/java/java-overview-1.html :
Simple


Compiling and Running

Like other programming languages, you compile your Java source code (in a text file) by invoking a compiler that outputs compiled code.
In this case, the compiled code is called "bytecode", which is in a .class file. You can install the same .class file on multiple operating systems.

To enable platform independence, the Java platform inserts "interpretation" between the compiled code (.class file of bytecode) and the operating system's native machine code.
The Java interpreter, named java, converts compiled "bytecode" into machine code.

The Java interpreter executes bytecode within the Java virtual machine, a sort of virtual computer inside the computer.

Or, if you prefer to visualize the sequence as numbered steps:

STEP DESCRIPTION OUTPUT  NOTES
1 Write and save the source code file, which is a text file named after the class, such as MyClass.java .java  
2 Invoke the Java compiler, javac, and specify the .java file to compile:
javac MyClass.java
   
3 The compiler outputs a .class file of bytecode, such as MyClass.class .class Look in your directory for this
4 Invoke the Java bytecode  interpreter, java, and specify the .class file to interpret:
java MyClass
   
5 Java Virtual Machine interprets the bytecode and outputs native code for the platform (Windows, UNIX, or Macintosh)    
6 Operating system runs the native code    
7 runtime memory management: The JVM periodically checks for unreferenced code (garbage collection) to free memory for reuse   In C/C++, this logic must be built into the code

"Platform" Architecture

Sun defines three (3) Java platforms at http://java.sun.com/java2/whatis/:

http://java.sun.com/j2se/1.3/
The JavaTM 2 Platform, Standard Edition (J2SETM) has revolutionized computing with the introduction of a stable, secure and feature-complete development and deployment environment designed from the ground up for the Web. It provides cross-platform compatibility, safe network delivery, and smartcard to supercomputer scalability. It provides software developers with a platform for rapid application development, making it possible to deliver products to market in Internet time. It defies traditional software development and deployment models by delivering on the promise of cross-platform compatibility.

What are core APIs?

Do not confuse the general concept of "interface" (a kind of abstract class) with the specific application programming interfaces (APIs) that are packaged with the SDK.

Core APIs are class and interfaces that are an integral part of (hence "core") the Java platform. We will look at the API documentation, and you will use some of the core APIs  in your code so that you do not have to write everything from scratch.

 

 


 

The Software Development Kit (SDK) is much more than a language. There are many convenient implementations you can use and customize in your applications.
The code provided for your applications is the application programming interface.
(You can think of APIs as "hooks" you can grab and use, without having to know the deepest level of Java, which is actually C++.)
The core APIs save you the work of "reinventing the wheel" and allow you to program at a higher level.
For example,

 

In the 1.4 J2SE, the JRE and the SDK include new core application programming interfaces (APIs), such as XML and Logging:
 http://java.sun.com/j2se/1.4/docs/relnotes/features.html

 

http://java.sun.com/j2se/1.5.0/docs/index.html is for the 1.5 version.


New Features in J2SE 5.0

http://java.sun.com/j2se/1.5.0/docs/relnotes/features.html
The set of new features in the latest release of Java provide some conveniences. Perhaps they are an attempt to make Java easier to use for people who write code for Microsoft's .NET platform. 

Generics

An alterative to casting various objects to type Object. This alterative provides type safety. To enable this feature, the concept of a Collection has been expanded to support type checking.

"for-each style" loop

A convention way to iterate over all the items in a collection, such as an array. [pp. 172-178]
for(int x: nums) sum += x;

Enumerations

A convention way to work with a collection of constant values that require identifiers. This is an alternative to final variables such the set of constants are their own data type. The java.lang package now contains the Enum class.

Autoboxing

A convenience that automates the process of wrapping a primitive into its corresponding object type.
Integer myValue = 100; // wraps the primitive into its corresponding object type
int myInt = myValue; // automatically unboxes the object to its primitive

Static import
An expansion of the import statement that allows you to use the short name, rather than the full-qualified name, for a method or property that is static.
import static java.lang.system.out;
// now you can say
// out.println();
// instead of
// System.out.println();

varargs

variable length arguments to a method

metadata

Allows you to provide annotations for use in build management, such as marking a particular method as deprecated


Syntax and reserved words

When you use any language, whether it is a computer language or a human language, you have to follow the rules. The term "syntax" refers to the rules of word order and word combination. Some languages, like French, have a flexible syntax that lets you say "the chocolate good" as well as "the good chocolate". Other language are more rigid about word order. Java syntax is more rigid than, say, Perl syntax. 

For example, Java has certain "reserved words" that you use according to Java's syntax and semantics. The Hello World application consists almost exclusively of reserved words or predefined words (in bold):

public class HelloWorld 
{
  public static void main (String[] args)
  {
    System.out.println("Hello World");
  }
}

The only words that are not reserved words or predefined words are the three variables: 

Just as human languages have punctuation in addition to words, so Java has special symbols, such as the curly braces { }, parentheses ( ), the brackets [], the comma separator , the wildcard asterisk *, quotation marks " ", the forward slash /, the backslash \, the dot . and the semicolon ; that completes a statement.


PATH and CLASSPATH

When you download the Java development kit at http://java.sun.com/javase/downloads/index.jsp, write down the drive and path in which the installer installs the Java development kit (JDK), so that you can verify the installation and, if necessary, configure Java so that the following are available from the command line of a console window:

COMPILER

The PATH system environment variable should point to the directory that has the java compiler (javac.exe), which is located in the the "bin" subdirectory of the installation directory for the JDK version.

For example, before the latest update became available, I went to my Windows Control Panel > System > Advanced > Environment Variables
and edited the path by adding a new entry:

;D:\java5\jdk1.5_01\bin

You will probably have a slightly different version number.

-------------------------------------------------

INTERPRETER

The CLASSPATH variable is what the Java interpreter looks for to run a Java program, the bytecode in a .class file.
I want Java to be able to run whatever .class file I have in my current directory.
Therefore, I also created a new user variable, CLASSPATH, and included:

.;D:\java5\jdk1.5.0_01;D:\java5\jdk1.5.0_01\lib\tools.jar

Then I logged out (or rebooted), so the changes would take effect.

---------------------------------------------------

http://www.cs.ucsb.edu/~teliot/Path_and_Classpath.htm

Setting the PATH and CLASSPATH on Windows XP

For VERSION 1.5.0 of Java

These directions also appear in your book
in the section "Before you Begin"

NOTE: If a command is given in quotes for you to type, DO NOT TYPE THE QUOTES

1.      Click on START (lower left)

2.      Under "Settings" click on "Control Panel"

3.      Switch to "classic view" (upper left) -- not "category view"

4.      Click on the "System" icon.

5.      Click on the "Advanced" tab.

6.      Click on the "Environment Variables" button (bottom).

7.      Highlight "PATH" (in the top window "User" not "System") and click the "edit" button.  

(Do not edit the "SYSTEM VARIABLES" because of the risk for the operating system.)

8.      Edit the "PATH" so it begins C:\Program Files\Java\jdk1.5.0\bin; (note: if you install Java into a different directory, you may need to change the directory from that listed above)

9.      For example, the full "PATH" on my computer is:
C:\Program Files\Java\jdk1.5.0\bin;C:\Program Files\SSH Communications Security\SSH Secure Shell

10.  After you have finished editing the PATH, click "OK".  You are done setting your PATH.  Now you have to create a new variable, called your CLASSPATH.

11.  Click on the "NEW" button below the top window.

12.  Under 'variable name' type CLASSPATH

13.  Under 'variable value' type  .  (yes, type a single period).

14.  Click OK.

15.  EXIT the control panel.

16.  Restart your computer.

17.  Test your installation by opening up a DOS window and verifying that both the commands "java" and "javac" are recognized.

Troubleshooting tips at http://java.sun.com/docs/books/tutorial/getStarted/problems/index.html


Links


Quiz: Session 1

  1. True or false: Java applications might be difficult to port from Windows to UNIX, but they run faster than C or C++ applications.

  2. True or false: First, Java source code is interpreted, and then it is compiled.

  3. What does JRE stand for?

  4. What is the purpose of the JRE?

  5. What is the Java Plug-in?

  6. What is the difference between an application and an applet?

  7. What is the difference between an applet and a servlet?

  8. What does the JVM do?

  9. Do Java and C++ support memory management and pointers in the same way?

  10. What is a key difference between Java and C#?

  11. What is javac?

  12. What is “bytecode”?

  13. Why is bytecode useful?

  14. What is a “core API”?

  15. What does the command-line token java invoke?


Homework Assignment

Download SDK (or JDK), run HelloWorld, and write a program that does arithmetic.

For a complete, step-by-step, illustrated guide, see Sun's tutorial, "Your First Cup of Java":
http://java.sun.com/docs/books/tutorial/getStarted/cupojava/win32.html
(Let's go over that together now.)

Be sure to read the installation instructions, including the section about updating the PATH variable:
http://java.sun.com/j2se/1.4/install-windows.html#Environment

  1. Make sure that you have an suitable text editor. (I recommend TextPad: http://www.textpad.com/.)
  2. Download the Java SDK.
  3. Set the path and/or classpath environment variables, if necessary.
    For additional instructions and examples, see: http://www.cs.ucsb.edu/~teliot/Path_and_Classpath.htm
  4. Do Homework 1, which is described at http://write-technical.com/126581/session1/syllabus.htm
  5.  Email your homework to the instructor: java@WORDesign.com, making sure you follow the rules listed at submitting homework.

If you have problems, see Sun's troubleshooting guide: http://java.sun.com/docs/books/tutorial/getStarted/problems/index.html