我已经阅读了很多关于这个主题的内容,telnet是一个协议,不是简单的套接字连接,等待换行符,使用外部库等等……
最重要的是,我需要一个快速而脏的java telnet应用程序启动和运行,不一定可扩展,不一定漂亮,所以我试图避免使用库,系统函数调用等.我一直在尝试和测试,到目前为止,当我尝试登录路由器(当然通过telnet)时,我得到了……没有.
这是我到目前为止使用的代码的剪辑,请有人指出我正确的方向,因为我不知道还应该尝试什么,因为我确信它必须是非常简单和愚蠢的东西我失踪了.提前致谢!
@H_502_6@Socket socket = new Socket("192.168.1.1",23); socket.setKeepAlive(true); BufferedReader r = new BufferedReader(new InputStreamReader(socket.getInputStream())); PrintWriter w = new PrintWriter(socket.getOutputStream(),true); int c=0; while ((c = r.read()) != -1) System.out.print((char)c); w.print("1234\r\n"); // also tried simply \n or \r //w.flush(); //Thread.sleep(1000); while ((c = r.read()) != -1) System.out.print((char)c); w.print("1234\r\n"); //Thread.sleep(1000); while ((c = r.read()) != -1) System.out.print((char)c); socket.close();解决方法
如果没有针对您的特定路由器进行测试,很难知道您的示例有什么问题.使用库可能是一个好主意,例如
http://sadun-util.sourceforge.net/telnet_library.html看起来很容易使用.
此网站还说如下:
@H_502_6@String command="print hello"; PrintWriter pw = new PrintWriter( new OutputStreamWriter(s.getOutputStream()),true); pw.print(command+"\r\n");In order to carry on the conversation,a command is issued by simply sending it on the socket’s outputstream (and using the telnet newline sequence \r\n):
@H_502_6@Writer w = new OutputStreamWriter(s.getOutputStream()); w.print(command+"\r\n"); w.flush();If the session appears to hang after login,avoid to wrap the StreamWriter into a PrintWriter and instead run an explicit flush() at the end:
这可能实际上是您的代码的问题.