Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I write a little command-line-application in Java. This application should work with a mix of parameters and commands, a little bit similar to the 'svn'-command.

Examples:

app url command1
app url command2 --parameter2 -x
app url command1 --param-with-argument argument
app --parameter url command1
app --no-url command2
app --help

Exists an easy to use library for Java that supports the parsing of such command-lines and probably also supports me by creating automatically an appropriate help?

share|improve this question
1  
Closely related older question: stackoverflow.com/questions/435740/… – Jonik Aug 4 '09 at 10:23
1  
possible duplicate of Is there a good command line argument parser for Java? – John Conde Oct 28 '12 at 4:15

7 Answers

up vote 28 down vote accepted

I'm a fan of Commons CLI.

You can set it to understand commands, flags (with short and long names), whether or not certain commands/switches are required, or if they have default values. It even has functionality to print out a useful --help type message.

The Usage Scenarios page has some good examples of how it can be used.

share|improve this answer

Try args4j: http://args4j.kohsuke.org/.

I prefer args4j to Common CLI (used both of them). With args4j you don't need to query any functions. Everything is done for you - parameters are set to object fields via reflection.

share|improve this answer
4  
We also use args4j. One drawback is that you cannot specify multivalued options in the style of -file input1.txt input2.txt. You have to specify the option switch before each value again (-file input1.txt -file input2.txt) which may be a disadvantage if you like to use bash expansion (so -file input*.txt is not possible) – MRalwasser Jun 15 '11 at 12:17
Dead link. java.net/projects/args4j is working. – user321068 Jun 21 '12 at 21:30
1  
The project moved to args4j.kohsuke.org – Alexey Ivanov Jul 10 '12 at 8:59

JewelCLI is a Java library for command-line parsing that yields clean code. It uses Proxied Interfaces Configured with Annotations to dynamically build a type-safe API for your command-line parameters.

An example parameter interface Person.java:

import uk.co.flamingpenguin.jewel.cli.Option;

public interface Person {
    @Option String getName();
    @Option int getTimes();
}

An example usage of the parameter interface Hello.java:

import static uk.co.flamingpenguin.jewel.cli.CliFactory.parseArguments;
import uk.co.flamingpenguin.jewel.cli.ArgumentValidationException;

public class Hello {
    public static void main(String [] args) {
        try {
            Person person = parseArguments(Person.class, args);
            for (int i = 0; i < person.getTimes(); i++)
                System.out.println("Hello " +  person.getName());
        } catch(ArgumentValidationException e) {
            System.err.println(e.getMessage());
        }
    }
}

Save copies of the files above to a single directory and download the JewelCLI 0.7.6 JAR to that directory as well.

Compile and run the example in Bash on Linux/Mac OS X/etc.:

javac -cp jewelcli-0.7.6.jar:. Person.java Hello.java
java -cp jewelcli-0.7.6.jar:. Hello --name="John Doe" --times=3

Compile and run the example in the Windows Command Prompt:

javac -cp jewelcli-0.7.6.jar;. Person.java Hello.java
java -cp jewelcli-0.7.6.jar;. Hello --name="John Doe" --times=3

Running the example should yield the following output:

Hello John Doe
Hello John Doe
Hello John Doe
share|improve this answer
As you can see JewelCLI makes command-line parsing simple and type safe. It also has no dependency baggage to drag along which is a rarity these days. – Alain O'Dea Jul 26 '10 at 21:59
Thank you for the URL correction @deterb :) – Alain O'Dea Mar 8 '12 at 0:16
Thank you for the link corrections @flamingpenguin :) – Alain O'Dea Mar 8 '12 at 0:16

For completeness sake let's add JCommander https://github.com/cbeust/jcommander

public class JCommanderTest {
    @Parameter
    public List<String> parameters = Lists.newArrayList();

    @Parameter(names = { "-log", "-verbose" }, description = "Level of verbosity")
    public Integer verbose = 1;

    @Parameter(names = "-groups", description = "Comma-separated list of group names to be run")
    public String groups;

    @Parameter(names = "-debug", description = "Debug mode")
    public boolean debug = false;
}

and an example usage

CommanderTest jct = new JCommanderTest();
String[] argv = { "-log", "2", "-groups", "unit", "a", "b", "c" };
new JCommander(jct, argv);

Assert.assertEquals(jct.verbose.intValue(), 2);
share|improve this answer

It's also worth looking at --jopt-simple.

It 'attempts to honor the command line option syntaxes of POSIX getopt() and GNU getopt_long().' It seems to have some community traction, notably being the command line parsing lib of choice for the OpenJDK.

share|improve this answer

There is also a java getopt http://www.urbanophile.com/arenn/hacking/download.html

share|improve this answer

JSAP looks pretty good to me.

http://sourceforge.net/projects/jsap/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.