私はこれをグーグルで検索し、oracle.comにアクセスして、これに関連するこのフォーラムのすべての質問を読みました。簡単な「Helloworld」プログラムを作成しました
package helloworld;
public class Helloworld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
NetBeansは、ソースコードをファイルにコンパイルし.class
ます。そのファイルをに移動しますC:\MyJava
私はそれを実行しようとします、C:\MyJava> java -cp . Helloworld
そしてそのようなすべての可能なバリエーション。私は取得し続けNoClassDefFoundError: Helloworld (wrong name: helloworld/Helloworld)
ます。
確かめる。ほぼこのような質問があります(「間違った名前」の違い)。私の場合、その質問に対する解決策は機能しません。