Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.