Apache Commons CLI - Verwendungsbeispiel
Die Apache Commons CLI bietet die HelpFormatter-Klasse zum Drucken des Verwendungsleitfadens für Befehlszeilenargumente. Siehe das folgende Beispiel -
Beispiel
CLITester.java
import org.apache.commons.cli.HelpFormatter;
import org.apache.commons.cli.Options;
import org.apache.commons.cli.ParseException;
public class CLITester {
public static void main(String[] args) throws ParseException {
Options options = new Options();
options.addOption("p", "print", false, "Send print request to printer.")
.addOption("g", "gui", false, "Show GUI Application")
.addOption("n", true, "No. of copies to print");
HelpFormatter formatter = new HelpFormatter();
formatter.printHelp("CLITester", options);
}
}
Ausgabe
Führen Sie die Datei aus und sehen Sie das Ergebnis.
java CLITester
usage: CLITester
-g,--gui Show GUI Application
-n <arg> No. of copies to print
-p,--print Send print request to printer.