1

我有以下内容:

final cli = new CliBuilder(...)
cli.with {...}

final arguments = cli.parse(args)
println arguments.properties

但无论如何,输出是:

false

如何获得所有设置的选项?

4

1 回答 1

1
cli.options.getOptions()
    .findAll {
        arguments[it.key]
    }
    .each {
        println "${it.key}: ${arguments[it.key]}"
    }
于 2012-06-18T19:45:18.593 回答