如何在 Java 中解析命令行参数?
要有效地解析 Java 中的命令行参数,请考虑利用以下库之一:
Java还提供了Scanner类用于手动参数解析: http://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html
使用 Commons CLI 的示例:
解析使用 Commons CLI 的两个字符串参数,创建一个 CommandLineParser 并使用解析参数.parse(...).
import org.apache.commons.cli.*; public class Main { public static void main(String[] args) throws Exception { // Create options Options options = new Options(); options.addOption("i", "input", true, "input file path"); options.getOption("i").setRequired(true); options.addOption("o", "output", true, "output file"); options.getOption("o").setRequired(true); // Parse arguments CommandLineParser parser = new DefaultParser(); CommandLine cmd = parser.parse(options, args); // Get parsed values String inputFilePath = cmd.getOptionValue("input"); String outputFilePath = cmd.getOptionValue("output"); System.out.println(inputFilePath); System.out.println(outputFilePath); } }
命令行使用:
$> java -jar target/my-utility.jar -i asd Missing required option: o usage: utility-name -i,--input <arg> input file path -o,--output <arg> output file
以上是如何高效解析 Java 中的命令行参数?的详细内容。更多信息请关注PHP中文网其他相关文章!