CLI di Apache Commons - Opzione booleana

Un'opzione booleana è rappresentata su una riga di comando dalla sua presenza. Ad esempio, se l'opzione è presente, il suo valore è vero, altrimenti è considerato falso. Considera il seguente esempio, dove stiamo stampando la data corrente e se è presente il flag -t. Quindi stamperemo anche il tempo.

Esempio

CLITester.java

import java.util.Calendar;
import java.util.Date;

import org.apache.commons.cli.CommandLine;
import org.apache.commons.cli.CommandLineParser;
import org.apache.commons.cli.DefaultParser;
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("t", false, "display time");
      
      CommandLineParser parser = new DefaultParser();
      CommandLine cmd = parser.parse( options, args);

      Calendar date = Calendar.getInstance();
      int day = date.get(Calendar.DAY_OF_MONTH);
      int month = date.get(Calendar.MONTH);
      int year = date.get(Calendar.YEAR);

      int hour = date.get(Calendar.HOUR);
      int min = date.get(Calendar.MINUTE);
      int sec = date.get(Calendar.SECOND);

      System.out.print(day + "/" + month + "/" + year);
      if(cmd.hasOption("t")) {
         System.out.print(" " + hour + ":" + min + ":" + sec);
      }
   }
}

Produzione

Esegui il file senza passare alcuna opzione e guarda il risultato.

java CLITester
12/11/2017

Esegui il file, passando -t come opzione e vedi il risultato.

java CLITester
12/11/2017 4:13:10