我目前正在使用import org.apache.commons.cli
假设我有一个命令行解析器,如:
private static commandLineParser(Options options, String[] strings) throws ParseException {
options.addOption("u", "username", true, "Login Username");
options.addOption("p", "password", true, "Login Password");
// Some other options
CommandLineParser parser = new DefaultParser();
return parser.parse(options, strings);
}
和我的主要功能:
public static void main(String args[]) {
Options options = new Options();
CommandLine cmd = null;
try {
cmd = commandLineParser(options, args);
//some helpFormatter stuff to make the options human-readable
} catch (ParseException e) {
e.printStackTrace();
System.exit(2);
}
//calling my main program
doSomething(cmd)
}
出于显而易见的原因,我想从命令行中省略密码,因为它在历史记录和进程列表中都可见。但是我的主程序需要一个CommandLine类型的对象。有没有办法解析与console.readPassword()
类似的行为的密码,甚至调用此函数并将其添加到CommandLine对象?
我已经尝试过搜索commons-cli和密码解析的组合但是没有成功。
答案 0 :(得分:0)
虽然commons-cli似乎没有办法向CommandLine
对象添加选项值,但您可以(希望)修改您的doSomething(cmd)
程序以从stdin读取。< / p>
如果在命令行上提供了密码,请接受它。如果没有,请立即从stdin读取。
例如:
private void doSomething(CommandLine cmd) {
String username = cmd.getOptionValue("username");
char[] password = (cmd.hasOption("password"))
? cmd.getOptionValue("password").toCharArray()
: System.console().readPassword("Enter password for %s user: ", username);
}