Reputation: 103
I have intellij java project which I run from IDE.
When I run simple java command to run project I get error -
Can any one tell me what is issue here?
Thanks Nilesh
Upvotes: 0
Views: 108
Reputation: 11
Please add the .java extension while running the javac command. Something like below:
javac ..... filename.java
Upvotes: 1