I do not know how to set the source file for a compilationTask.

I tried this:

JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();

List<String> optionList = new ArrayList<String>(Arrays.asList("-d","build/classes"));

List<String> classes = new ArrayList<String>();
classes.add("src/Hello.java");
CompilationTask task = compiler.getTask(null, null, null, optionList, classes, null);

task.call();

But I get the following error:

Exception in thread "main" java.lang.IllegalArgumentException: Not a valid class name: src/Hello.java

of course, if I put null instead of classes I get "no source files" as no source file was given. I tried using the run function of the JavaCompiler before this but I could not specify the options in the string arguments (Or I do not know how).

Here is the solution:

JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();

        StandardJavaFileManager fileManager = compiler.getStandardFileManager(null, null, null);
        List<String> optionList = new ArrayList<String>(Arrays.asList("-d","build/classes"));

 Iterable<? extends JavaFileObject> classes = fileManager.getJavaFileObjectsFromFiles(Arrays.asList(new File("src/Hello.java")));


CompilationTask task = compiler.getTask(null, null, null, optionList,null, classes);

task.call();
link|improve this question
did you ever solve the problem? If so, would you mind posting your solution? – Paul W Jun 1 '11 at 12:39
Post is updated with solution – Muaz Jun 2 '11 at 21:49
feedback

2 Answers

The following code should solve the problem, though I made the paths absolute when I ran the code on my machine:

JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
DiagnosticCollector<JavaFileObject> diagnostics = new DiagnosticCollector<JavaFileObject>();
StandardJavaFileManager fm = compiler.getStandardFileManager(diagnostics, null, null);

ArrayList<String> optionList = new ArrayList<String>(Arrays.asList("-d","build/classes"));

ArrayList<File> files = new ArrayList<File>();
files.add(new File("src/Hello.java"));
CompilationTask task = compiler.getTask(null, null, null, optionList, null, fm.getJavaFileObjectsFromFiles(files));

task.call();
link|improve this answer
well, compilation unit, requires A list of JavaFileObjects and the JavaFileObject is an interface(need to implement all of its method). Is there another way to just specify the path of the source file as a string or something? – Muaz May 3 '11 at 18:07
feedback

Try changing:

classes.add("src/Hello.java");

to:

classes.add(
  new SimpleJavaFileObject(new URI("src/Hello.java"), JavaFileObject.Kind.SOURCE)
);

It's a bit verbose but does the job. Of course it could be extracted to a method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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