【发布时间】:2016-05-05 04:36:38
【问题描述】:
IntelliJ 显示在 http://commons.apache.org/proper/commons-cli/usage.html 的此示例代码中不推荐使用 OptionBuilder。
我应该用什么来代替?
import org.apache.commons.cli.*;
Options options = new Options();
options.addOption(OptionBuilder.withLongOpt( "block-size" )
.withDescription( "use SIZE-byte blocks" )
.hasArg()
.withArgName("SIZE")
.create());
【问题讨论】:
标签: java apache-commons apache-commons-cli