我有一个属性文件,该文件是这样的 -
hostName=machineA.domain.host.com
emailFrom=tester@host.com
emailTo=world@host.com
emailCc=hello@host.com
现在,我从我的Java程序读取上面的属性文件,如下图所示。 我解析上面的属性文件手工方式现在 -
public class FileReaderTask {
private static String hostName;
private static String emailFrom;
private static String emailTo;
private static String emailCc;
private static final String configFileName = "config.properties";
private static final Properties prop = new Properties();
public static void main(String[] args) {
readConfig(arguments);
// use the above variables here
System.out.println(hostName);
System.out.println(emailFrom);
System.out.println(emailTo);
System.out.println(emailCc);
}
private static void readConfig(String[] args) throws FileNotFoundException, IOException {
if (!TestUtils.isEmpty(args) && args.length != 0) {
prop.load(new FileInputStream(args[0]));
} else {
prop.load(FileReaderTask.class.getClassLoader().getResourceAsStream(configFileName));
}
StringBuilder sb = new StringBuilder();
for (String arg : args) {
sb.append(arg).append("\n");
}
String commandlineProperties = sb.toString();
if (!commandlineProperties.isEmpty()) {
// read, and overwrite, properties from the commandline...
prop.load(new StringReader(commandlineProperties));
}
hostName = prop.getProperty("hostName").trim();
emailFrom = prop.getProperty("emailFrom").trim();
emailTo = prop.getProperty("emailTo").trim();
emailCc = prop.getProperty("emailCc").trim();
}
}
大多数时候,我将通过命令行这样运行的JAR运行我上面的程序 -
java -jar abc.jar config.properties
java -jar abc.jar config.properties hostName=machineB.domain.host.com
我的问题是-
- 有什么办法增加
--help
在运行选项abc.jar
,它可以告诉我们更多关于如何运行jar文件又是什么每个属性的含义以及如何使用它们? 我见过--help
同时运行大部分的C ++可执行文件或Unix的东西,所以不知道怎么可以做同样的事情在Java中?
我需要使用的CommandLine解析器像Commons CLI
为这个在Java中实现这一点,而不是做手工解析,我应该使用Commons CLI
来解析文件呢? 如果是的话,那么任何人都可以提供一个例子,我会怎么做,在我的情况?