common-java-errors

15y, 66d ago [edited]

Class names are only accepted if annotation processing is explicitly requested

Problem

When attempting to compile I get the following error:

javac myfirstjavaprog
error: Class names, 'myfirstjavaprog', are only accepted if annotation processing is explicitly requested
1 error

Solution

You forgot the .java extension on the filename, please type:

javac myfirstjavaprog.java

Comments

hide preview ▲show preview ▼

What's next? verify your email address for reply notifications!

Leave first comment to start a conversation!