The use case is simple. I got the source files that were created using Eclipse. So, there is a deep directory structure, where any Java class could be referring to another Java class in the same, child, sibling or parent folder. How do I compile this whole thing from the terminal using javac ?
|
|
You have to know all the directories, or be able to use wildcard ..
|
|||
|
|
You'd have to use something like Ant to do this hierarchically: http://ant.apache.org/manual/Tasks/javac.html You'll need to create a build script with a target called compile containing the following:
Then you''ll be able to compile all files by running:
Alternatively, import your project into Eclipse and it will automatically compile all the source files for that project. |
||||
|
|
I would take Jon's suggestion and use Ant, since this is a pretty complex task. However, if you are determined to get it all in one line in the Terminal, on Linux you could use the find command. But I don't recommend this at all, since there's no guarantee that, say, Foo.java will be compiled after Bar.java, even though
If all of your classes haven't been compiled yet, if there's one main harness or driver class (basically the one containing your main method), compiling that main class individually should compile most of project, even if they are in different folders, since Javac will try to the best of its abilities to resolve dependency issues. |
|||||
|
|
With Bash 4, you can just enable globstar
and then do
|
|||
|
|
|
If all you want to do is run your main class (without compiling the
or
|
|||||
|
|
There is a way to do this without using a pipe character, which is convenient if you are forking a process from another programming language to do this:
Though if you are in Bash and/or don't mind using a pipe, then you can do:
|
|||
|
|
|
Following is the method I found: 1) Make a list of files with relative paths in a file (say FilesList.txt) as follows (either space separated or line separated):
2) Use the command:
This will compile all the files and put the class files inside classes directory. Now easy way to create FilesList.txt is this: Go to your source root directory.
But, this will populate absolute path. Using a text editor "Replace All" the path up to source directory (include \ in the end) with "" (i.e. empty string) and Save. |
|||
|
|