当前位置: 首页 > 工具软件 > JOpt Simple > 使用案例 >

JOpt Simple 4.5 发布,命令行解析器

吴凯泽
2023-12-01

JOpt Simple 4.5 包含一些小的增强,包括:

  • Resolved gh-17 by offering OptionParser.nonOptions() and NonOptionArgumentSpec.
  • Resolved gh-27 by offering OptionParser.allowsUnrecognizedOptions().

JOpt Simple 是一个简单的、测试驱动的命令行解析器,支持 POSIX getopt() 和 GNU getopt_long()

示例代码:

01package joptsimple.examples;
02 
03import joptsimple.OptionParser;
04import joptsimple.OptionSet;
05import org.junit.Test;
06import static org.junit.Assert.*;
07 
08public class ShortOptionsTest {
09    @Test
10    public void supportsShortOptions() {
11        OptionParser parser = new OptionParser( "aB?." );
12 
13        OptionSet options = parser.parse( "-a", "-B", "-?" );
14 
15        assertTrue( options.has( "a" ) );
16        assertTrue( options.has( "B" ) );
17        assertTrue( options.has( "?" ) );
18        assertFalse( options.has( "." ) );
19    }
20}

转载于:https://www.cnblogs.com/shihao/archive/2013/06/02/3113708.html

 类似资料: