My application needed java compiler api. So I tried to compile a Sample Compiler API program. The Output displayed is
javac: file not found: MyClass.java
Compilation Failed
Usage: javac <options> <source files>
use -help for a list of possible options.
My code is
MyClass.java:
package test;
public class MyClass {
public void myMethod(){
System.out.println("My Method Called");
}
}
Listing for SimpleCompileTest.java that compiles the MyClass.java file.
SimpleCompileTest.java:
package test;
import javax.tools.*;
public class SimpleCompileTest
{
public static void main(String[] args) {
String fileToCompile = "test" + java.io.File.separator +"MyClass.java";
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
int compilationResult = compiler.run(null, null, null, fileToCompile);
if(compilationResult == 0){
System.out.println("Compilation is successful");
}
else{
System.out.println("Compilation Failed");
}
}
}
javac test/MyClass.javaand notjavac test.MyClass.java. To run the class however you are correct, he needs to put the fully qualified name of the class, ie,test.MyClass. The difference in args ofjavacandjavais thatjavactakes files to compile (therefore we need to use/) whilejavatakes a class (therefore we use the dot.separator) – Guillaume Polet Oct 29 '12 at 9:47