Apache Commons CLI-첫 번째 애플리케이션

사용 된 옵션에 따라 전달 된 숫자의 합계 또는 전달 된 숫자의 곱을 가져 오는 용도의 샘플 콘솔 기반 애플리케이션을 만들어 보겠습니다.

CLITester라는 Java 클래스를 만듭니다.

CLITester.java

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 {
      //***Definition Stage***
      // create Options object
      Options options = new Options();
      
      // add option "-a"
      options.addOption("a", false, "add numbers");
      
      // add option "-m"
      options.addOption("m", false, "multiply numbers");

      //***Parsing Stage***
      //Create a parser
      CommandLineParser parser = new DefaultParser();

      //parse the options passed as command line arguments
      CommandLine cmd = parser.parse( options, args);

      //***Interrogation Stage***
      //hasOptions checks if option is present or not
      if(cmd.hasOption("a")) {
         System.out.println("Sum of the numbers: " + getSum(args));
      } else if(cmd.hasOption("m")) {
         System.out.println("Multiplication of the numbers: " + getMultiplication(args));
      }
   }
   public static int getSum(String[] args) {
      int sum = 0;
      for(int i = 1; i < args.length ; i++) {
         sum += Integer.parseInt(args[i]);
      }
      return sum;
   }
   public static int getMultiplication(String[] args) {
      int multiplication = 1;
      for(int i = 1; i < args.length ; i++) {
         multiplication *= Integer.parseInt(args[i]);
      }
      return multiplication;
   }
}

산출

파일을 실행하고 -a를 옵션으로 전달하고 숫자를 전달하여 결과로 숫자의 합계를 얻습니다.

java CLITester -a 1 2 3 4 5
Sum of the numbers: 15

파일을 실행하고 -m을 옵션으로 전달하고 숫자를 전달하여 결과로 숫자의 곱셈을 얻습니다.

java CLITester -m 1 2 3 4 5
Multiplication of the numbers: 120