この状況では、2 セットのオプションを定義し、コマンド ラインを 2 回解析する必要があります。最初のオプション セットには、必要なグループの前にあるオプション (通常は--help
と--version
) が含まれ、2 番目のセットにはすべてのオプションが含まれます。
オプションの最初のセットを解析することから始めます。一致するものが見つからない場合は、2 番目のセットに進みます。
次に例を示します。
Options options1 = new Options();
options1.add(OptionsBuilder.withLongOpt("help").create("h"));
options1.add(OptionsBuilder.withLongOpt("version").create());
// this parses the command line but doesn't throw an exception on unknown options
CommandLine cl = new DefaultParser().parse(options1, args, true);
if (!cl.getOptions().isEmpty()) {
// print the help or the version there.
} else {
OptionGroup group = new OptionGroup();
group.add(OptionsBuilder.withLongOpt("input").hasArg().create("i"));
group.add(OptionsBuilder.withLongOpt("output").hasArg().create("o"));
group.setRequired(true);
Options options2 = new Options();
options2.addOptionGroup(group);
// add more options there.
try {
cl = new DefaultParser().parse(options2, args);
// do something useful here.
} catch (ParseException e) {
// print a meaningful error message here.
}
}