Hello Friends I have installed jdk1.3 beta. to test I worte this piece of code
<<file name is a1.java>> import java.lang.*; import java.util.* ; import java.io.* ; public class a1 { public static void main(String args[] ) { System.out.println("HI Awdhesh You have done it"); } } NO complie time error while executing the error read is
" Exception in thread "main" java.lang.NoClassDefFoundError: a1 " Can someone reply to this as what should I do Also pl. specify what should be my classpath <<drive>>\jdk1.3 or ???
Thanks
Cindy Glass
"The Hood"
Sheriff
Joined: Sep 29, 2000
Posts: 8521
posted
0
Your classpath needs to include whereever the class file for a1 is. Also make sure that the capitalization of your java command matches the way it is in the class file (looks right but . . .)
"JavaRanch, where the deer and the Certified play" - David O'Meara
Susan Delph
Ranch Hand
Joined: Feb 24, 2001
Posts: 34
posted
0
Try running your program using this: java -classpath . a1
The -classpath . specifies "look in THIS directory for a1". Susan
Awdhesh Kumar
Greenhorn
Joined: Mar 17, 2001
Posts: 3
posted
0
Thanks problem is solved.
Percy Densmore
Ranch Hand
Joined: Mar 06, 2001
Posts: 214
posted
0
Thanks Susan, I was having the same problem with my DOS Promt. Your tip worked for me too. Cool! Does that mean my Autoexec.bat is using a different classpath? Percy
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.