Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

readline-like library for Java [closed]

Which readline-like library for Java do you use? By 'readline' like library I mean library for editing console input, with support for history, tab-completion, and stuff like this. I'm looking for one, and I cannot choose from so many choices (jLine -- unmaintained, java-readline -- last release on 2003, others?)

like image 638
Peter Štibraný Avatar asked May 13 '10 16:05

Peter Štibraný


1 Answers

I've used JLine to add history, etc. to a Clojure REPL (JVM process) when executed from the command line. It just magically worked and worked well, so I never bothered to investigate anything else.

like image 196
G__ Avatar answered Nov 01 '22 05:11

G__