Re: basic Java problem

2002-01-07 Thread Art Yerkes
Peter Gibbons-BU wrote: > Normally, when you run java code, java expects to see a class name, not a file name. Class names have dots, and don't start from the filesystem root. Try this: $ mkdir javatest $ cat > javatest/test.java package javatest; public class test { public static vo

Re: basic Java problem

2002-01-07 Thread Larry Arnold
make sure you append '.' to your classpath ;) At 11:11 AM 1/7/02 -, you wrote: >hello there, >I've downloaded a copy of Java 1.3 latest version and installed it ok. I've >set CLASSPATH to where my Java progs are. I can issue simple Java command >ok, i.e. Java -v for the version and Java retur

basic Java problem

2002-01-07 Thread Peter Gibbons-BU
hello there, I've downloaded a copy of Java 1.3 latest version and installed it ok. I've set CLASSPATH to where my Java progs are. I can issue simple Java command ok, i.e. Java -v for the version and Java returns the expected result. However when I attempt to run any application, i.e. like a simpl