does anybody know how to read output from telnet with Java? I'm able to connect to the server and execute some commands, but I need output from that commands.
For example, command ls gives a list of all files and directory so I want to get that list and do something with it in my Java code.
I had tried 3rd party libraries for Telnet like apache-commons and sinetfactory(www.jscape.com ) but with no results for my case...
Igor