English 中文(简体)
Posix Parser
  • 时间:2024-11-03

Apache Commons CLI - Posix Parser


Previous Page Next Page  

A Posix parser is use to parse Posix pke arguments passed. It is now deprecated and is replaced by DefaultParser.

Example

CLITester.java


import org.apache.commons.cp.CommandLine;
import org.apache.commons.cp.CommandLineParser;
import org.apache.commons.cp.Options;
import org.apache.commons.cp.ParseException;
import org.apache.commons.cp.PosixParser;

pubpc class CLITester {
   pubpc static void main(String[] args) throws ParseException {
      
      //Create posix pke options
      Options posixOptions = new Options();
      posixOptions.addOption("D", false, "Display");
      posixOptions.addOption("A", false, "Act");
      
      CommandLineParser posixParser = new PosixParser();
      
      CommandLine cmd = posixParser.parse(posixOptions, args);
      
      if( cmd.hasOption("D") ) {
         System.out.println("D option was used.");
      }
      if( cmd.hasOption("A") ) {
         System.out.println("A option was used.");
      }
   }
}

Output

Run the file while passing -D -A as options and see the result.


java CLITester -D -A
D option was used.
A option was used.

Run the file while passing --D as option and see the result.


java CLITester --D
D option was used.
Advertisements