vote up 11 vote down star

I need to write a simple command-line application in Java. It would be nice to use a library that takes care of parsing commands and takes care of things like flags and optional/mandatory parameters...

UPDATE

Something that has built-in TAB completion would be particularly great.

flag

46% accept rate
1  
Typically CLI means your app takes arguments from the command line to determine in what way to run. Based on your update, do you mean you want to have an interactive shell-style process inside your java application? (like irb?) – Alex B Jan 12 at 16:59
yes i do actually... you are correct – carrier Jan 12 at 17:02
irb is interactive ruby. I think you would benefit from re-asking your question without using the phrase "command-line" or "cli". Maybe "Are there libraries to create an interactive shell in java?" and give example usage of your app for clarity. – Alex B Jan 12 at 18:29

7 Answers

vote up 12 vote down check

I've used the Apache Commons CLI library for command-line argument parsing. It's fairly easy to use and has reasonably good documentation.

Which library you choose probably comes down to which style of options you prefer ("--gnu-style" or "-javac-style").

link|flag
vote up 0 vote down

I have used JSAP. I have found it to be stable and well documented.

I am not sure I understand what you mean by "built-in TAB completion". Can you elaborate.

link|flag
vote up 0 vote down

I have used the Java Simple Argument Parser extensively. It handles all sorts of option types, has a well-designed and library (including the option to write custom parsers), and provides good documentation both in the JavaDocs and online.

I think your desire for tab completion would be taken care of by the shell rather than the command-line parsing library.

link|flag
vote up 1 vote down

There is a Java port of GNU getopt library for command line parsing. For command editing and TAB completion there is JLine (as mmyers has already recommended).

link|flag
vote up 1 vote down

In our company we are using JewelCli that uses an annotated Java interface definition to describe the Command Line Interface in a declarative style.

Light and simple to use, I'll recommend it.

link|flag
No Tab-completion for jewelcli, it's just a basic (but great) command line arguments parser. – madgnome Jan 12 at 17:15
vote up 5 vote down

JLine looks helpful.

JLine is a Java library for handling console input. It is similar in functionality to BSD editline and GNU readline. People familiar with the readline/editline capabilities for modern shells (such as bash and tcsh) will find most of the command editing features of JLine to be familiar.

And it does list tab completion in its features.

link|flag
+1; readline was the first thing that came to mind for me, and this seems to be the Java equivalent. – Adam Jaskiewicz Jan 12 at 19:11
I actually found this by Googling for "readline java library". :) – mmyers Jan 12 at 19:14
vote up 6 vote down

Have a look at arg4j.

link|flag

Your Answer

Get an OpenID
or

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