F
Finbar Saunders
Hello, I'm getting back into java, last used when jdk 1.02 was around. I'm
having a NoClassDefFoundError prob;
public class TestDriver
{
public static void main (String args[]){
Test t = new Test();
t.run();
{
{
I've tried saving this is TestDriver.java as well as in the Test.java
program;
public class Test
{
public Test(){};
public run() {
System.out.println("Test");
}
}
I'm saving this in Test.java.
I'm running this with java -cp c:\test c:\TestDriver but am getting the -
Exception in thread "main" java.lang.NoClassDefFoundError: error. I guess my
classpath is allright? I've tested this in jbuilderx and get the same issue.
any help appreciated,
thanks,
Fin.
having a NoClassDefFoundError prob;
public class TestDriver
{
public static void main (String args[]){
Test t = new Test();
t.run();
{
{
I've tried saving this is TestDriver.java as well as in the Test.java
program;
public class Test
{
public Test(){};
public run() {
System.out.println("Test");
}
}
I'm saving this in Test.java.
I'm running this with java -cp c:\test c:\TestDriver but am getting the -
Exception in thread "main" java.lang.NoClassDefFoundError: error. I guess my
classpath is allright? I've tested this in jbuilderx and get the same issue.
any help appreciated,
thanks,
Fin.