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.
3
votes
1answer
116 views
Prefill a line with jline
Using either JLine (or JLine2), is it possible to issue a call to readline on a ConsoleReader and have, in addition to the standard prompt, the buffer be pre-filled with a string of my choosing?
I ...
0
votes
0answers
16 views
Reading input from a pipe or file with jline
I am implementing a simple command shell which uses jline2 to handle terminal input/output. This works fine until I try to do some typical shell stuff like piping
cat some.file | java -jar ...
0
votes
0answers
31 views
How to print console output in tabular form in java using Jline
I am using JDK 1.6 version and eclipse IDE
I want to print the console output in tabular form using Jline API. I am not familiar with this api. I tried to find some tutorials but did not get. Any one ...
0
votes
0answers
19 views
Reference to JLine examples
I've been trying to write a Java console program that can act upon arrow keys.
I came across JLine library that claims to be able to do this.
I've tried a few times to use the JLine library to ...
0
votes
0answers
28 views
JLine, how to get the full filename in Windows
Dear all JLine users,
I am recently developing a console application where I use JLine, to provide command and file name completion.
It works pretty well with FileNameCompleter but however I cannot ...
5
votes
1answer
78 views
JLine only works from IDEA
I have no problem using jline when the code is run within idea. Running with a bat file, the edit characters are not being sent to the terminal.
java -classpath ...
0
votes
0answers
40 views
how can I add the feature using jline when i press up arrow key and previous command has to be print on console of linux system?
I am working on command line interface using jline api. but i am facing a problem when i am using my cli on windows environment the up arrow key showing command history but when i am running my ...
0
votes
0answers
117 views
how to implement clean screen and config keybind with jLine
I want to develop a java cli with jline..I get different Jline version from Internet, but I don't know the difference between them..
My OS is WINDOWS XP SP2.
In Jline09.9 and Jline1.0, it also don't ...
0
votes
0answers
46 views
Python interpreter using JLine
JLine, a wonderful library for applications that uses terminal. I wonder whether I could create an interpreter like Python using JLine. Is there any example code that opens a command prompt like ...
0
votes
2answers
341 views
JLine library echo
I use JLine library to handle console input and output.
Terminal terminal = TerminalFactory.getFlavor(TerminalFactory.Flavor.valueOf("UNIX"));
terminal.init();
terminal.setEchoEnabled(true);
...
7
votes
3answers
874 views
how to cancel ConsoleReader.readLine()
first of all, i'm learning scala and new to the java world.
I want to create a console and run this console as a service that you could start and stop.
I was able to run a ConsoleReader into an Actor ...
0
votes
1answer
76 views
How do I use conditional operator shell:if in karaf / jline
I am trying to conditionally execute a command using the apache karaf command line, which uses the jline library.
I can't find any documentation on the shell:if command.
For example in linux shell ...
1
vote
1answer
189 views
Debug Jline2 application via Eclipse
I am using Jline2 framework to build a console application in Java. When launching the application from Eclipse on Windows 7, the shell exists immediately and does not wait for the user to input ...
1
vote
3answers
675 views
Is there a way to talk to a Clojure REPL process from another process?
I'm wondering if I can make a Vim plugin that sends forms over to the REPL session that lein repl starts. Is there a way to send messages to an existing jline.ConsoleRunner process?
1
vote
1answer
110 views
Once jLine writes over one line to shell, we can't go back to original line
I've encountered the following problem with jLine. We open the command prompt (both linux and windows) and enter a stream of letters until it "spills" over to the next line. for example:
...
1
vote
1answer
120 views
Windows cmd wrapper bad communication with Clojure and Scala REPLs
I am writing a cmd wrapper which should intercept streams for any cmd application just as any other cmd wrapper would. So far I have succeded and most apps work fine like 'ping' and others. However, ...
0
votes
0answers
288 views
jline keep prompt at the bottom
I am using jline and I have a neat ConsoleReader and everything works great. However, if you are typing something into the the prompt and there is output on stdout (from another thread), the output ...
4
votes
2answers
564 views
Clojure standard REPL with buffer editor?
I am not looking for an IDE or integrated REPL. I just wanted to ask if someone knows if it is possible to have a buffer editor in the REPL as know from 'psql' or some *nix shells.
In psql for ...
1
vote
3answers
268 views
Where can I find documentation for the Scala jar files?
I have installed Scala 2.9.1.final
This is the contents of it's "lib" folder:
jline.jar
scala-compiler.jar
scala-dbc.jar
scala-library.jar
scalap.jar
scala-swing.jar
I am expecting that there is ...
0
votes
1answer
619 views
jline multi-argument parsing
I am trying to get JLine to do tab completion so I can enter something like the following:
commandname --arg1 value1 --arg2 value2
I am using the following code:
final List<Completor> ...
0
votes
1answer
169 views
How can I emit text on the command line with a strike-though effect using JLine?
I'm using JLine for a console application and I would like to emit text with a strike-through effect.
Is this possible with JLine and how would I do it?
Are there any platform-specific concerns?
5
votes
2answers
1k views
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 ...
0
votes
3answers
553 views
Why is my javap output different than yours for the same jar file?
I'm having trouble compiling code which has a maven dependency on jline-0.9.94. Specifically, I'm compiling Groovy 1.7.6 using its default Ant target and getting the following error:
[...]
-banner:
...
5
votes
4answers
2k views
clojure/lein REPL with jline
For some reason I can't get clojure REPL working with jline, what i did was git clone the clojure repository off github then run ant to build it, then i download jline-0.9.94.jar to the directory with ...
7
votes
2answers
7k views
Java keyboard input parsing in a console app
I've just started messing around with JLine to parse character input in console mode. It seems to work well, but I'm wondering:
Is there a nonblocking way in JLine to find out if characters are ...

