664行 CliDriver main启动
public static void main(String[] args) throws Exception {
int ret = new CliDriver().run(args);
System.exit(ret);
}
646行
public int run(String[] args) throws Exception {
OptionsProcessor oproc = new OptionsProcessor();
if (!oproc.process_stage1(args)) {
return 1;
}
OptionsProcessor oproc = new OptionsProcessor();
OptionsProcessor 初始化 所有options
解析 options args
if (!oproc.process_stage1(args)) {
原文:http://www.cnblogs.com/itxuexiwang/p/6288544.html