Apache Commons CLI:替代已弃用的 OptionBuilder?
2022-09-02 01:19:40
IntelliJ 表明 OptionBuilder 在此示例代码中已从 http://commons.apache.org/proper/commons-cli/usage.html 弃用。
我应该使用什么作为替代品?
import org.apache.commons.cli.*;
Options options = new Options();
options.addOption(OptionBuilder.withLongOpt( "block-size" )
.withDescription( "use SIZE-byte blocks" )
.hasArg()
.withArgName("SIZE")
.create());