7

I need to create TUI for my application. Is there any framework to help me with it? I need something like Ncurses, but for Java. I have found some (Jcurses, Charva). Anyone have experience with them? Please, advise me, which is better (better is mean easier in my case). Or maybe something else?

Sergey
  • 1,059
  • 3
  • 21
  • 35

1 Answers1

1

You could use Lanterna - Java library for creating text-based GUIs.

If you are familiar with Java's GUI frameworks like Swing or AWT, the UI-component based approach (window, panel, content-pane, add-component) might be easy to pick up.

It is used by CHARVA in their GitHub repo charva-lanterna.

See also:

hc_dev
  • 8,389
  • 1
  • 26
  • 38