Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

galaxy2000/jcommander

Repository files navigation

JCommander

This is an annotation based parameter parsing framework for Java.

Here is a quick example:

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;
 @DynamicParameter(names = "-D", description = "Dynamic parameters go here")
 public Map<String, String> dynamicParams = new HashMap<String, String>();
}

and how you use it:

JCommanderTest jct = new JCommanderTest();
String[] argv = { "-log", "2", "-groups", "unit1,unit2,unit3",
 "-debug", "-Doption=value", "a", "b", "c" };
new JCommander(jct, argv);
Assert.assertEquals(2, jct.verbose.intValue());
Assert.assertEquals("unit1,unit2,unit3", jct.groups);
Assert.assertEquals(true, jct.debug);
Assert.assertEquals("value", jct.dynamicParams.get("option"));
Assert.assertEquals(Arrays.asList("a", "b", "c"), jct.parameters);

The full doc is available at http://beust.com/jcommander

About

Command line parsing framework for Java

Resources

License

Stars

Watchers

Forks

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /