July 2005
Intermediate to advanced
1032 pages
27h 10m
English
If you want to build the sample applications in this chapter, you will need a Java compiler and a Java runtime environment. If you are using Windows, Linux, or Solaris, you can obtain the Java SDK (software development kit) and runtime environment from Sun Microsystems (http://java.sun.com). For other environments, search the web or contact your vendor.
I'll use a simple makefile to build the JDBC sample applications, so you will need the make utility as well.
Listing 13.1 shows the makefile that I'll use:
#
# Filename: makefile
#
JAVAC = javac
JFLAGS = -g
.SUFFIXES: .class .java
.java.class:
$(JAVAC) $(JFLAGS) $<
|
This makefile states that, to turn a .java (Java source code) file into a .class (Java executable) ...
Read now
Unlock full access