mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
386 B
386 B
javac
Java Application Compiler.
- Compile a
.java
file:
javac {{file.java}}
- Compile several
.java
files:
javac {{file1.java}} {{file2.java}} {{file3.java}}
- Compile all
.java
files in current directory:
javac {{*.java}}
- Compile a
.java
file and place the resulting class file in a specific directory:
javac -d {{path/to/some/directory}} {{file.java}}