Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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");
        }
    }
}
share|improve this question
1  
How do you expect anyone to read that mess? Please use a consistent and logical indent for code blocks. – Andrew Thompson Oct 29 '12 at 9:02
1  
Check if files are present in current directory? – Azodious Oct 29 '12 at 9:04
have you tried using the full path to your MyClass.java file? – oracle certified professional Oct 29 '12 at 9:08
1  
@GagandeepBali you need to use javac test/MyClass.java and not javac 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 of javac and javais that javac takes files to compile (therefore we need to use /) while java takes a class (therefore we use the dot . separator) – Guillaume Polet Oct 29 '12 at 9:47
@GuillaumePolet : LOL too true, my bad, I put that wrongly. Been learning C now a days, so totally confused with new terms +1 for the info :-) – nIcE cOw Oct 29 '12 at 10:10

closed as too localized by Brian Roach, user714965, hims056, Nik...., Wooble Oct 29 '12 at 11:35

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

javac will search in current directory if you provide only the file-name to it.

You can do any of the following two actions:

  • Change the Current Working Directory of your command-le to the directory in which your files are present.

  • Provide the full path of the file.

All the readings relating to javac you can do here

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.