Awdhesh Kumar

Greenhorn
+ Follow
since Mar 17, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Awdhesh Kumar

I do agree that while learning Java one should be fimilar with as many error messages one encounters
One can learn lot more from error messages
after all when one complies java code and gets error messages and he rectifies that error, successful compling encourages more to learn java
Thanks problem is solved.
23 years ago
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
23 years ago