仅供参考:我在 Windows 机器上运行这个 Java 程序。我确信这很重要。
基本上,我在为带有双连字符的选项指定值时遇到问题。单连字符选项工作正常。
import org.apache.commons.cli.*;
public class Test {
public static void main(String[] args) throws ParseException {
String[] arguments = new String[] { "--input file.txt" };
// create the Options
Options options = new Options();
options.addOption( "i", "input", false, "Specify the input file." );
// Create the parser
CommandLineParser parser = new GnuParser();
// Parse the command line
CommandLine cmd = parser.parse(options, arguments);
}
}
程序失败并出现错误:
线程“主”org.apache.commons.cli.UnrecognizedOptionException 中的异常:无法识别的选项:--input file.txt
如果我将参数指定为-i file.txt
,则没有错误。如果参数是--input
,也没有错误。为什么双连字符选项不接受任何值?它与解析器有关还是我在 Windows 机器上运行它?
我在这里做错了什么?任何帮助,将不胜感激。
非常感谢。