为什么我无法使用 Apache CLI 解析选项
Why I can't parse Options with using Apache CLI
我的问题是当我创建 Options
实例并在那里设置数据时,它无法从我的静态字段 "ITEM_COUNT"
中读取值。看不懂这是什么问题?
public class Main {
public static final String ITEM_COUNT = "100";
public static void main( String [] args ) throws ParseException, FileNotFoundException {
Options options = new Options();
options.addOption(ITEM_COUNT, true, "The number of items being simulated" );
CommandLineParser parser = new DefaultParser();
CommandLine cmd = parser.parse( options, args );
// there I have NumberFormatException:null, the value from ITEM_COUNT is null
Integer item_count = Integer.valueOf(cmd.getOptionValue(ITEM_COUNT));
Runner mockServer = new Runner();
mockServer.initialize(item_count);
mockServer.start();
}
}
您可以 运行 运行 -> 编辑配置 -> 程序参数 -> -name_of_arg value_of_arg.
我的问题是当我创建 Options
实例并在那里设置数据时,它无法从我的静态字段 "ITEM_COUNT"
中读取值。看不懂这是什么问题?
public class Main {
public static final String ITEM_COUNT = "100";
public static void main( String [] args ) throws ParseException, FileNotFoundException {
Options options = new Options();
options.addOption(ITEM_COUNT, true, "The number of items being simulated" );
CommandLineParser parser = new DefaultParser();
CommandLine cmd = parser.parse( options, args );
// there I have NumberFormatException:null, the value from ITEM_COUNT is null
Integer item_count = Integer.valueOf(cmd.getOptionValue(ITEM_COUNT));
Runner mockServer = new Runner();
mockServer.initialize(item_count);
mockServer.start();
}
}
您可以 运行 运行 -> 编辑配置 -> 程序参数 -> -name_of_arg value_of_arg.