Ich habe eclipse neu installiert und als ich in meinem ersten Projekt (HelloWorld) eine neue Klasse erstellt habe ist direkt ein Fehler mit generiert den man nicht beheben kann und ich bin kurz for dem ausrasten wie behebe ich den Fehler
x
public class Test_HelloWorld {
public static void main(String[] args) {
// TODO Auto-generated method stub
xSystem.out.print("Hello World");
}
}
Mit der Fehlermeldung:
Description Resource Path Location Type
Must declare a named package because this compilation unit is associated to the named module 'Test_HelloWorld' Test_HelloWorld.java /Test_HelloWorld/src line 1 Java Problem
und in der Konsole steht:
Error occurred during initialization of boot layer
java.lang.module.FindException: Error reading module: C:\Users\omueo\eclipse-workspace\Test_HelloWorld\bin
Caused by: java.lang.module.InvalidModuleDescriptorException: Test_HelloWorld.class found in top-level directory (unnamed package not allowed in module)
x
public class Test_HelloWorld {
public static void main(String[] args) {
// TODO Auto-generated method stub
xSystem.out.print("Hello World");
}
}
Mit der Fehlermeldung:
Description Resource Path Location Type
Must declare a named package because this compilation unit is associated to the named module 'Test_HelloWorld' Test_HelloWorld.java /Test_HelloWorld/src line 1 Java Problem
und in der Konsole steht:
Error occurred during initialization of boot layer
java.lang.module.FindException: Error reading module: C:\Users\omueo\eclipse-workspace\Test_HelloWorld\bin
Caused by: java.lang.module.InvalidModuleDescriptorException: Test_HelloWorld.class found in top-level directory (unnamed package not allowed in module)
Zuletzt bearbeitet: