i've been trying to create a telnet client using java but i couldn't
find a good lib that can ease my task. I've tried to code my own
telnet api according to the specification of rfc854 and Q method of
rfc1143 but i found it's a really daunting task. there are couple of
api on the net, one of them is by Matthias L. Jugel and Marcus
Meißner. but problem with it is, it devoids of flexibility. it
specifies that i must determine the prompt ahead. what if two servers
use different prompt and i want to connect 'em?
the api which can be found in apache project is buggy. the 2kb buffer
specified in its input stream reader causes output > 2kb being
truncated :o Not that i did not try to fix them but...