home *** CD-ROM | disk | FTP | other *** search
/ Internet 1996 World Exposition / park.org.s3.amazonaws.com.7z / park.org.s3.amazonaws.com / Java / LEDSign / README < prev    next >
Encoding:
Text File  |  2017-09-21  |  1.3 KB  |  34 lines

  1. LED Sign V2.5  Dec. 27, 1995
  2. Copyright 1995 Darrick Brown (dbrown@cs.hope.edu)
  3.  
  4. The main LEDSign directory contains the following directories:
  5.     LED - contains all the .java source code and compiled .classes
  6.     WWW - contains all the LED Sign HTMLs
  7.     fonts - contains any font data files
  8.     scripts - contains any scripts for LED Sign
  9.  
  10. LED Sign V2.5 comes pre-compiled, you do NOT need to compile the
  11. source code to use it.
  12.  
  13. You may want to make modifications to the source code.  If you do,
  14. you will need to recompile the applet (instructions below).  If you
  15. modify the source code, please do not redistribute the source code
  16. to others.
  17.  
  18. To compile LED Sign:
  19.     cd LEDSign/LED (the source directory)
  20.     javac -classpath .:<your java classes directory> LED.java
  21.  
  22.     Example:
  23.         javac -classpath .:/src/java/classes LED.java
  24.  
  25.     Note:  The "-classpath" option tells the compiler where to look for the
  26.            ".class" files.  All paths are separated my a ':'.  Therefore,
  27.            if you are compiling in MS-DOS, you will not be able to do
  28.            "-classpath .:c:\java\classes" because it will try to look in
  29.            the current directory, c, and \java\classes.  You will need to
  30.            make sure that you have the Java Development Kit installed
  31.            correctly to compile
  32.  
  33.  
  34.