hi, I just downloaded jcreator light.. and I cant seem to compile anything
without it saying...
--------------------Configuration: <Default>--------------------
Error : Invalid path, \bin\javac.exe -classpath "D:" -d D: D:\e23.java"
I created the file under d drive and have public class filename... it
still says that.. whats the deal?
> hi, I just downloaded jcreator light.. and I cant seem to compile anything
> without it saying...
[quoted text clipped - 4 lines]
> I created the file under d drive and have public class filename... it
> still says that.. whats the deal?
The error said it is calling "\bin\java.exe" - not a full path.
I don't use JCreator myself, so I could be wrong... but have you configured
JCreator about where your JDK is?
I assume the extra double quote at the end of D:\e23.java is a typing or
copy'n'paste mistake.
By the way, it is command practice to name a class with an initial captial
letter, so the class name should be E23 instead of e23... and thus the
filename should be E23.java instead of e23.java. This won't cause the error
you have now, but the compiler will issue a warning about it.