Posts

Showing posts with the label jar

Can't properly compile and run program - No Class Def Found Error

Can't properly compile and run program - No Class Def Found Error Source code I'd like to properly compile and run the program, but the solutions I've tried aren't working. javac src/main/java/ReceitoDromo.java Output Note: ReceitoDromo.java uses unchecked or unsafe operations Note: Recompile with -Xlint:unchecked Exception java src.main.java.ReceitoDromo Error: Could not find or load main class src.main.java.ReceitoDromo open the command line, go to the folders where your ReceitoDromo.class file is, and invoke java ReceitoDromo . What is your output? – Daniele Jul 1 at 17:49 ReceitoDromo.class java ReceitoDromo 1 Answer 1 There might be some syntax error in code. Mostly it happens when you use collections without type specifiers. eg- yo...