How to compile multiple java source files in command line

前端 未结 5 798
梦如初夏
梦如初夏 2020-11-27 15:25

I know running javac file1.java produces file1.class if file1.java is the only source file, then I can just say java file1

5条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-27 16:00

    or you can use the following to compile the all java source files in current directory..

    javac *.java
    

提交回复
热议问题