Basic HTML version of Foils prepared Oct 1 98

Foil 6 Java Applications in a Nutshell

From Java Tutorial 98- 1: Introduction to Java Language and Applets CPS606 -- Fall Semester. by Geoffrey C. Fox, Nancy McCracken


1 All Java programs are written into a file with a ".java" extension.
2 Applications are .java files with a main method which is excuted first.
3 How to compile and run a Java application (via bytecodes):
  • Run the compiler on a .java file:
  • javac MyProgram.java
  • producing a file "MyProgram.class" of Java bytecodes
  • Run the interpreter on a .class file:
  • java MyProgram
  • which executes the bytecodes
4 The resources javac and java are part of JDK and are not in Netscape and so are not necessarily available on the same machine as your web server.

in Table To:


© Northeast Parallel Architectures Center, Syracuse University, npac@npac.syr.edu

If you have any comments about this server, send e-mail to webmaster@npac.syr.edu.

Page produced by wwwfoil on Sat Nov 28 1998