Possible Duplicate:
Java: How can I compile an entire directory structure of code?
In the javac command line, how to compile whole source dir with wildcard ?
javac src\com\mq\Main.java
changed to
javac src\*
can we do this ?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Have you considered using Ant? It makes this kind of thing much simpler. See: http://ant.apache.org/manual/Tasks/javac.html#srcdirnote
You just point it to the top level of your source tree, then you can selectively exclude anything you don’t want to compile. You can also get more complicated if you need to, but that handles most common needs.