H
Hukke
Gast
Hallo,
Ich bin jetzt auf Ubuntu umgestiegen und habe mir das OpenJDK-6 installiert. Soweit so gut.
Der Compiler funktioniert und erstellt eine .class Datei.
Wenn ich diese aber aufrufe, kommt folgende Fehlermeldung im Terminal:
$ java HalloWelt
"Exception in thread "main" java.lang.NoSuchMethodError: main"
Es handelt sich hierbei um das "HalloWelt" Programm
Ich bin jetzt auf Ubuntu umgestiegen und habe mir das OpenJDK-6 installiert. Soweit so gut.
Der Compiler funktioniert und erstellt eine .class Datei.
Wenn ich diese aber aufrufe, kommt folgende Fehlermeldung im Terminal:
$ java HalloWelt
"Exception in thread "main" java.lang.NoSuchMethodError: main"
Es handelt sich hierbei um das "HalloWelt" Programm
Java:
public class HalloWelt
{
public static void main()
{
System.out.println("Hallo Welt!");
}
}