Hi,
A similar question came up recently in the Google Date API group:
http://groups.google.com/group/google-help-dataapi/browse_thread/thread/ea6a72146a0441bb/4aa2a1891bf2d4af
You just need to put the current directory on the classpath and you
should be good to go.
Hope that helps,
Lane
On Apr 19, 3:15 am, Attitude <itbh...@gmail.com> wrote:
-- Source file --
/**
*HelloWorld.java
*/
public classHelloWorld{
public static void main(String[] args){
System.out.println("Hello world!");
}
}
--- On the Console --
#> javacHelloWorld.java
#> javaHelloWorld
Hello world!
#> java -classpath gdata-base-1.0.jar;gdata-client-1.0.jarHelloWorld
Exception in thread "main" java.lang.NoClassDefFoundError:HelloWorld