RE: JDK 1.1.7:Can't find class

1999-06-28 Thread Adam Dewey
See if CLASSPATH was set by another program. If it was add .; to the variable list at the start. If the variable CLASSPATH was not set, try setting with a period only ('.'). This will allow you to run the Java class from the current directory (hopefully).

Re: JDK 1.1.7:Can't find class

1999-06-26 Thread Seth M. Landsman
On Sat, Jun 26, 1999 at 06:42:48PM +0200, Gernot Bauer wrote: > Hi, > > just wrote a java-app that creates a class called Euro1.class. It > compiles and the Euro1.class-file is created. When I try to start it > with "java Euro1.class" I always get "Can't find class Euro1.class" but > Im in the di

JDK 1.1.7:Can't find class

1999-06-26 Thread Gernot Bauer
Hi, just wrote a java-app that creates a class called Euro1.class. It compiles and the Euro1.class-file is created. When I try to start it with "java Euro1.class" I always get "Can't find class Euro1.class" but Im in the directory where Euro1.class is. The jdk-doc tells me not to set CLASSPATH...