tree: 7e133b3ac8abe9cdfec20d0582fc61ad56a267d9 [path history] [tgz]
  1. .settings/
  2. args4j/
  3. args4j-maven-plugin/
  4. args4j-maven-plugin-example/
  5. args4j-tools/
  6. src/
  7. xdocs/
  8. .classpath
  9. .project
  10. Android.mk
  11. LICENSE
  12. pom.xml
  13. README.android
  14. README.md
  15. release.sh
args4j/README.md

args4j

args4j is a small Java class library that makes it easy to parse command line options/arguments in your CUI application. See more info at [http://args4j.kohsuke.org/]

Why should I use it?

See the quick intro

  • It makes command line parsing very easy by using annotations
  • Generate usage text very easily
  • Generate HTML/XML documentation listing all options
  • Full localization support
  • Designed to parse javac like options, as opposed to GNU-style (where ls -lR is considered to have two options l and R).
  • Licensed under the MIT license.

How can I use it?

  1. Check the sample. This is how your code will look like.
  2. Download the distribution or include the library from sthe Maven Repository at java.net.
  3. Write your code.

More Resources

  1. A small tutorial for the use of the Starter and Args4J
  2. javadoc
  3. How to generate a documentation for your CLI
  4. Extend args4j to handle other Java types
  5. [Kohsuke's Blog: Parsing command line options in JDK 5.0 style] (http://weblogs.java.net/blog/kohsuke/archive/2005/05/parsing_command.html)
  6. A comparison between Commons CLI and Args4j in French