我想尝试一下Apache Commons CLI,并找到一个不错的起点是其网页上的“使用”部分。

http://commons.apache.org/proper/commons-cli/usage.html

现在,该示例建议创建一个DefaultParser,但是我能找到的最接近的声音是BasicParser。这是要用的东西吗,我错过了什么吗?

最佳答案

我使用GnuParser()而不是DefaultParser(),并且效果很好。
CommandLineParser parser = new GnuParser();
更新:在CLI的1.3.1版中,不建议使用GnuParser()。所以我只添加了import org.apache.commons.cli.DefaultParser;,现在我使用CommandLineParser parser = new DefaultParser();一切都很好!

关于java - Apache Commons CLI中的DefaultParser,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15732696/

10-10 13:56