I'm using apache commons for executing telnet commands from java .
My commands what Im using are output of telnet connection:
c:\mydir> Telnet 195.234.34.43 //connecting to a telnet
# Telnet localhost 8888 // connecting to 8888 port ,and it will wait for next msg with cursor blinking.
Send some more message ...
From Java Im able to send multiple messages other than this waiting message. Can someone help me to fix this. I had tried like
TelnetClient telnet = new TelnetClient();
telnet.connect( "195.234.34.43");
InputStream inStream = telnet.getInputStream();
PrintStream outStream = new PrintStream( telnet.getOutputStream());
outStream.println( "Telnet localhost 8888"); //After this message, it is waiting infinitly for console output. But I want to send message through programittically
outStream.flush();
int ch = 0;
while( ( ch = inStream.read()) != -1) {
log("Respose:" + ch);
}
Can any one tell me , whats wrong with this appraoch?