在RUN 中找到Arguments 选项,
然后在Program arguments 中输入你想传入的参数
我是需要传入2个参数值,值之间加空格
E:/workspace/xjraApi/conf/kra.properties
E:/workspace/xjraApi/conf/reg.properties
main方法中这样取
if (args.length < 2) {
System.out.println(“USAGE: TestClient KraPropsPath RegPropsPath”);
return;
}
String propsPath = args[0];
String regPropsPath = args[1];
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/13639.html