Java terminal emulator

Rima picture Rima · Sep 13, 2012 · Viewed 12.3k times · Source

Does anyone knows of a library or a class that emulates the vt100 terminal (doesn't matter if graphical or not). What I want basically is a class that implements the logic of a vt100 terminal (like when receiving a "delete" code will call a delete function, or if GUI based that will delete one char).

Answer

Alexis Dufrenoy picture Alexis Dufrenoy · Sep 13, 2012

Telnetd seems to be a complete and pretty well documented solution:

http://telnetd.sourceforge.net/

You can also try:

http://www.jcraft.com/jcterm/

It behaves like a VT100 and uses a SSH2 connection. But the website indicates the VT100 emulation is incomplete.