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.

I'm trying to compile many files using the Compiler API.

Say I have a directory structure

.../program
   +/org
    +/foo
    |+ Main.java
    +/bar
     + Tools.java

Is there any way to discover all the Java files and make it compiler everything without resorting to recursing into all the directories and finding all the *.java files?

EDIT: What I'm trying to do is compile all the classes that I get in some directory tree. These classes are independent of each other. Then I load the classes and instantiate some objects of these classes and call methods. None of the classes need to have main.

share|improve this question
It's funny that nobody's able (willing?) to help you with such a basic problem - take away the shiny IDEs and everybody will be screwed! :D – sfussenegger Oct 16 '09 at 7:10
BCEL or ASM might help. chaoticjava.com/posts/jakartas-bcel-vs-objectwebs-asm – Dave Jarvis Oct 16 '09 at 16:32
1  
The OP is talking about using the Java Compiler API aka JSR 199, not javac. It's not that basic. – Pascal Thivent Oct 16 '09 at 16:34
Thanks fir the edit Pascal. I should have put that in the title. – Flame Oct 17 '09 at 3:08

1 Answer

up vote 3 down vote accepted

The javax.tools.JavaFileManager class has a list() method that should do the trick:

Iterable<JavaFileObject> list(JavaFileManager.Location location,
                              String packageName,
                              Set<JavaFileObject.Kind> kinds,
                              boolean recurse)
                              throws IOException

Use the recurse parameter to include "subpackages" and then just iterate over the returned JavaFileObject.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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