Is there an implementation of Java Look and Feel using only the console?

I would like to run a simple Java GUI application on a system without a GUI.

Changing LaF to a console (even partial) implementation would allow, but so far I have not been able to find.

+4
source share
2 answers

There is TUIAWT - it's pretty old, and for AWT, not swing, but it could very well make you a hotter. >

+2
source

Following the links to TUIAWT , I found CHARVA , which seems to be able to replace AWT and Swing. This is not just an implementation of LaF, but it can be modified to provide one in this current state, which allows you to develop a console interface for Java applications.

+1
source

Source: https://habr.com/ru/post/1343434/


All Articles