exception in thread 'main' java.lang.NoClassDefFoundError:

后端 未结 23 3592
心在旅途
心在旅途 2020-11-28 06:27

The following program is throwing error:

public class HelloWorld {
    public static void main(String args[]) {
        System.out.println(\"Hello World!\");         


        
23条回答
  •  北荒
    北荒 (楼主)
    2020-11-28 06:32

    type the following in the cmd prompt, within your folder:

    set classpath=%classpath%;.;
    

提交回复
热议问题