Befehlszeilenargumente in Java analysieren
Beim Umgang mit Befehlszeilenargumenten ist deren effizientes und effektives Parsen für die Entwicklung robuster Java-Anwendungen von entscheidender Bedeutung. Um dies zu erreichen, stehen verschiedene Ansätze zur Verfügung:
Bibliotheken von Drittanbietern:
DIY-Parsing:
Beispielverwendung:
Erwägen Sie das Parsen von zwei Zeichenfolgenargumenten mit der Apache Commons-CLI:
import org.apache.commons.cli.*; public class Main { public static void main(String[] args) throws Exception { Options options = new Options(); Option input = new Option("i", "input", true, "input file path"); input.setRequired(true); options.addOption(input); Option output = new Option("o", "output", true, "output file"); output.setRequired(true); options.addOption(output); CommandLineParser parser = new DefaultParser(); HelpFormatter formatter = new HelpFormatter(); CommandLine cmd = null; try { cmd = parser.parse(options, args); } catch (ParseException e) { System.out.println(e.getMessage()); formatter.printHelp("utility-name", options); System.exit(1); } String inputFilePath = cmd.getOptionValue("input"); String outputFilePath = cmd.getOptionValue("output"); System.out.println(inputFilePath); System.out.println(outputFilePath); } }
Befehlszeilenverwendung:
$> 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
Das obige ist der detaillierte Inhalt vonWie kann ich Befehlszeilenargumente in Java effizient analysieren?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!