vote up 6 vote down star
3

Is there a good options parser framework/library for command-line programs written in Java? E.g. the equivalent of Python's optparse?

flag

67% accept rate

8 Answers

vote up 4 vote down

I've used JOpt and found it quite handy: http://jopt-simple.sourceforge.net/

The front page also provides a list of about 8 alternative libraries, check them out and pick the one that most suits your needs.

link|flag
vote up 3 vote down

You might find this meta-article of unhappiness interesting as a jumping off point:

http://furiouspurpose.blogspot.com/2008/07/command-line-parsing-libraries-for-java.html

link|flag
That guy is pretty useless "Commons CLI Apparently the oldest of the options here, and doesn't get a lot of respect from commenters, so I didn't really look at this very closely..", but thanks for the link anyway. – James McMahon Sep 29 at 14:34
vote up 2 vote down

if you are familiar with gnu getopt, there is a java port at: http://www.urbanophile.com/arenn/hacking/download.htm. there appears to be a some classes that do this: http://docs.sun.com/source/816-5618-10/netscape/ldap/util/GetOpt.html, http://xml.apache.org/xalan-j/apidocs/org/apache/xalan/xsltc/cmdline/getopt/GetOpt.html

link|flag
vote up 1 vote down

Yeap.

I think you're looking for something like this: http://commons.apache.org/cli

The Apache Commons CLI library provides an API for processing command line interfaces.

link|flag
vote up 1 vote down

Maybe these

  • JArgs command line option parsing suite for Java - this tiny project provides a convenient, compact, pre-packaged and comprehensively documented suite of command line option parsers for the use of Java programmers. Initially, parsing compatible with GNU-style 'getopt' is provided.

  • ritopt, The Ultimate Options Parser for Java - Although, several command line option standards have been preposed, ritopt follows the conventions prescribed in the opt package.

link|flag
vote up 0 vote down

Take a look at the Commons CLI project, lots of good stuff in there.

link|flag
vote up 0 vote down

Someone pointed me to args4j lately which is annotation based. I really like it!

link|flag

Your Answer

Get an OpenID
or
never shown

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