mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 00:24:56 +02:00

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
19 lines
386 B
Markdown
19 lines
386 B
Markdown
# 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}}`
|