To compile the java-programs use the Java compiler "javac", e.g.:

	javac *.java

In order for Java to find the compiled classes (stored in the .class files) either add the current directory (a dot, '.', represents this) to the environment variable CLASSPATH or copy the .class files to $HOME/BSF4ooRexx850/lib (Unix) or %USERPROFILE%\BSF4ooRexx850\lib (Windows). 

Not doing so will yield the Java error ClassNotFoundException.

To run or use one of the compiled Java programs make sure that a) CLASSPATH includes the local directory and that you run the programs from the local directory, e.g.:

	java JavaDimension
	java JavaUseRexxDimension

---rgf, 20240302

