Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to write a Java terminal application that does screen manipulation. Are there any good libraries out there that allow you to manipulate the screen like curses in the *nix/C world?

Minimal features I'm looking for are windowing and user input support.

In feature-speak, I'd like to have a region of the terminal where some data is regularly updated while (at the same time) the user can enter commands/text in some other part of the screen.

share|improve this question

4 Answers

up vote 19 down vote accepted

There is Charva, which links to native code but has an api based on Swing. The screenshots show lots of text windows, so that looks useful.

share|improve this answer
Nice one, too bad though that it requires native libraries. I'll give this a shot and see how far I get. – Francisco Canedo Jan 16 '09 at 12:03
6  
Last release: 2006. – Grzegorz Oledzki Jan 25 '11 at 12:10

Haven't used it myself, but Java Curses Library sounds like what you want.

share|improve this answer
Sounds good, but I think I'll go with Charva, since that'll provide a more OO experience. Thanks for the suggestion. – Francisco Canedo Jan 16 '09 at 12:02
4  
Java Curses last release: 2002. – Pistos Dec 3 '09 at 23:34
5  
Java Curses has now gotten some recent attention, and a new release in 2012. – Nate C-K Apr 17 '12 at 19:44

I found the lanterna library recently. Haven't had the opportunity to use it yet but it looks like a more up-to-date alternative to the others.

share|improve this answer

Here is a way to call the ncurses lib using JNI. I tested this and it works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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