Gilberto Garcia Jr. wrote:
4) why a simple hello word program in java, that works fine on windows, return this error on linux (java.lang.NoDefFoundError)
bash$cat test.java
public class test {
public test() {}
public static void main(String[] argc) {
System.out.print("Hello World\n");
}
}
bash$javac test.java
bash$java test
Hello World
bash$
Works fine here, could you elaborate...