其他分享
首页 > 其他分享> > commons-cli 一点使用

commons-cli 一点使用

作者:互联网

背景: 因项目调用FMIS 接口API 获取数据,需要获取多个接口进行拉取数据。

1  总体上设计思想是: 

       部署到大数据平台JAR包,需要调用,有多少个表就调用多少次。

      Main方法: 入参使用  commons-cli  优雅传参方式。

     1.1 POM 包引用:

<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.5.0</version>
</dependency>

 

1.2 Main 方法主要代码

String rpcName = assembleOptions(args);
private static String assembleOptions(String[] args) {

String result = null;
// 构建参数
final Options options = new Options();
options.addOption(new Option("h", "help", false, "帮助"));
options.addOption(new Option("p", "paramName", true, "RPC接口入参名称(必填)"));

HelpFormatter hf = new HelpFormatter();
hf.setWidth(110);
CommandLine commandLine = null;
CommandLineParser parser = new PosixParser();
try {
commandLine = parser.parse(options, args);
if (commandLine.hasOption('h')) {
hf.printHelp("FmisApp", options, true);
}
if (commandLine.hasOption('p')) {
result = commandLine.getOptionValue('p');
}

} catch (Exception e) {
hf.printHelp("FmisApp", options, true);
logger.error(" 执行 [FmisApp 方法 assembleOptions] : 完成 : Exception=[{}]", e.getMessage());
}
return result;
}

1.3 使用:

 

 

 

 

 

 

 

 2   使用模板设计思路:

     因涉及 httpclient 

     login       (公共模板方法)  对应应用是不变化的。

     getData   (获取远程数据参数不一样) 除非入参有变化,需要重写此方法

     insertDb     (因为返回的报文XML 有 表的元数据信息,所以这里可以配置化操作) 

     所以用模板方式可以减少代码量。

     

标签:cli,commandLine,commons,new,一点,hf,options
来源: https://www.cnblogs.com/nown/p/16659204.html