gpt4 book ai didi

apache-commons-cli - 使用apache commons cli定义位置参数

转载 作者:行者123 更新时间:2023-12-04 04:10:23 25 4
gpt4 key购买 nike

我想定义一个包含命名参数和位置参数的Apache Commons CLI解析器。

program [-a optA] [-b optB] [-f] pos1 pos2

如何验证pos1和pos2?

最佳答案

快速阅读该文档,我不知道CommandLine类将提供对其余位置参数的访问。

解析在命令行上传递的选项后,其余参数在 CommandLine.getArgs()方法中可用。

public static void main(String[] args) {
DefaultParser clParse = new DefaultParser();
Options opts = new Options();
opts.addOption("a", true, "Option A");
opts.addOption("b", true, "Option B");
opts.addOption("f", false, "Flag F");

CommandLine cmdLine = clParse.parse(opts, args);
System.out.println(cmdLine.getArgs().length);
}

关于apache-commons-cli - 使用apache commons cli定义位置参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35710212/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com