Thats code:
package helloWorld;
public class helloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
What's wrong? I am pretty newb.
Thats code:
package helloWorld;
public class helloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
What's wrong? I am pretty newb.
You need to specify the classpath:
java -cp C:\Users\jklh\Desktop\java_files\helloWorld\bin helloWorld.helloWorld