Is there a good options parser framework/library for command-line programs written in Java? E.g. the equivalent of Python's optparse?
|
closed as not constructive by C. Ross, gnat, bahrep, duDE, DuckMaestro Apr 14 at 8:28
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Check these out: http://commons.apache.org/cli/ http://www.martiansoftware.com/jsap/ And, to roll your own: http://java.sun.com/j2se/1.5.0/docs/api/java/util/Scanner.html |
|||||||||||||||||
|
|
Take a look at the more recent JCommander: http://beust.com/jcommander (I created it, happy to answer questions or take feature requests) |
|||||||||||||||||||||
|
I have been trying to maintain a list of java CLI parsers |
|||||||||||||||||||
|
|
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. |
|||
|
|
|
Someone pointed me to args4j lately which is annotation based. I really like it! |
|||||
|
|
Yeap. I think you're looking for something like this: http://commons.apache.org/cli
|
|||
|
|
|
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 |
|||||
|
|
Take a look at the Commons CLI project, lots of good stuff in there. |
|||
|
|
|
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 |
|||
|
|
|
I wrote another one: http://argparse4j.sourceforge.net/ Argparse4j is a command line argument parser library for Java, based on Python's argparse. |
|||
|
|
Maybe these
|
||||
|
|
|
I wouldn't recommend using Apache Common CLI library, as it is non-threadsafe. It uses stateful classes with static variables and methods to do internal work (e.g. OptionBuilder) and should only be used in single-threaded strongly controlled situations. |
|||||
|
|
airline @ Github looks good. Based on annotation and trying to emulate git command line structures. |
|||
|
|
