使用套接字的java简单telnet客户端

前端之家收集整理的这篇文章主要介绍了使用套接字的java简单telnet客户端前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经阅读了很多关于这个主题内容,telnet是一个协议,不是简单的套接字连接,等待换行符,使用外部库等等……

最重要的是,我需要一个快速而脏的java telnet应用程序启动和运行,不一定可扩展,不一定漂亮,所以我试图避免使用库,系统函数调用等.我一直在尝试和测试,到目前为止,当我尝试登录路由器(当然通过telnet)时,我得到了……没有.

这是我到目前为止使用的代码的剪辑,请有人指出我正确的方向,因为我不知道还应该尝试什么,因为我确信它必须是非常简单和愚蠢的东西我失踪了.提前致谢!

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看起来很容易使用.

此网站还说如下:

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):

String command="print hello"; 
 PrintWriter pw = new PrintWriter(
      new OutputStreamWriter(s.getOutputStream()),true);
 pw.print(command+"\r\n");

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:

Writer w = new OutputStreamWriter(s.getOutputStream());
 w.print(command+"\r\n");
 w.flush();

这可能实际上是您的代码的问题.

原文链接:https://www.f2er.com/java/120333.html

猜你在找的Java相关文章