What class do I need to use to create a Telnet client through Java?
Thanks
Printable View
What class do I need to use to create a Telnet client through Java?
Thanks
Telnet is really easy with Java. Use the java.net.Socket class to create a TCP socket to the server. Then you can read and write to the Output/InputStreams. I would wrap those stream classes in Readers to make thing a little easier.