使用org.apache.commons.net.telnet发送telnet命令

时间:2016-11-29 12:52:28

标签: java apache telnet

我使用org.apache.commons.net.telnet库与我的Telnet服务器建立连接,该服务器的实现与标准RFC 854略有不同,但没什么可怕的。

实际上,我与这个远程telnet服务器建立连接的唯一方法是使用org.apache.commons.net.telnet,因为纯Java套接字不起作用。

由于我无法找到使用sendCommand方法发送commans的方法,因为我接受了byte(不是byte[] })它是唯一的一个参数。

我将String command转换为byte[]数组,但我无法将其作为参数传递...

到目前为止,这是我的代码:

import org.apache.commons.net.io.Util;
import org.apache.commons.net.telnet.TelnetClient;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public class Telnet {

    public static void main(String[] args) {
        TelnetClient telnet;

        telnet = new TelnetClient();

        try {
            telnet.connect("17.16.15.14", 12345);

            byte[] cmd = "root".getBytes();

            telnet.sendCommand(cmd); // this is where I'm stuck
        } catch (IOException e) {
            e.printStackTrace();
            System.exit(1);
        }

        readWrite(telnet.getInputStream(), telnet.getOutputStream(),
                System.in, System.out);

        try {
            telnet.disconnect();
        } catch (IOException e) {
            e.printStackTrace();
            System.exit(1);
        }

        System.exit(0);
    }

    public static final void readWrite(final InputStream remoteInput,
                                       final OutputStream remoteOutput,
                                       final InputStream localInput,
                                       final OutputStream localOutput)
    {
        Thread reader, writer;

        reader = new Thread()
        {
            @Override
            public void run()
            {
                int ch;

                try
                {
                    while (!interrupted() && (ch = localInput.read()) != -1)
                    {
                        remoteOutput.write(ch);
                        remoteOutput.flush();
                    }
                }
                catch (IOException e)
                {
                    //e.printStackTrace();
                }
            }
        }
        ;


        writer = new Thread()
        {
            @Override
            public void run()
            {
                try
                {
                    Util.copyStream(remoteInput, localOutput);
                }
                catch (IOException e)
                {
                    e.printStackTrace();
                    System.exit(1);
                }
            }
        };


        writer.setPriority(Thread.currentThread().getPriority() + 1);

        writer.start();
        reader.setDaemon(true);
        reader.start();

        try
        {
            writer.join();
            reader.interrupt();
        }
        catch (InterruptedException e)
        {
            // Ignored
        }
    }
}

长话短说:如何使用此库发送命令?

1 个答案:

答案 0 :(得分:3)

您可以使用从getOutputStream返回的OutputStream来编写数据,例如telnet.getOutputStream().write(cmd);。您可能还需要在OutputStream上调用.flush()