InterviewSolution
Saved Bookmarks
| 1. |
I Have 10 .java Files In A Folder. What Is The Process To Compile All The Files Using A Single Command Line Execution Instead Of Compiling Each .java File Separately? |
|
Answer» Executing the “javac *.JAVA “COMMAND from the directory location will compile all the files PRESENT in the FOLDER with .java extension. Executing the “javac *.java “command from the directory location will compile all the files present in the folder with .java extension. |
|