CLI Apache Commons - Exemple d'aide

La CLI Apache Commons fournit la classe HelpFormatter pour imprimer l'aide relative aux arguments de ligne de commande. Voir l'exemple.

Exemple

CLITester.java

import java.io.PrintWriter;

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();

      final PrintWriter writer = new PrintWriter(System.out);
      formatter.printUsage(writer,80,"CLITester", options);
      writer.flush();
   }
}

Production

Exécutez le fichier et voyez le résultat.

java CLITester
usage: CLITester [-g] [-n <arg>] [-p]