寻找 Java Telnet 模拟器 [已关闭]

2022-09-03 02:12:51

我正在编写一个后端程序,该程序可以远程登录到服务器,运行一些命令并保存这些命令的所有输出。就像期待一样。

我想使用一个开源解决方案,它得到了很好的支持,并且可以与JDK 6一起运行。

到目前为止,我已经找到了3个选项,并希望得到一些帮助,以决定使用哪一个(或更好的建议)。

commons-net - 这是非常受支持的,但我很难得到一个简单的“登录并执行'ls'”命令工作。我更喜欢使用这个库,如果有人可以提供一个简单的示例(而不是它附带的从用户那里获取输入的示例),我想走这条路。

如果我无法使用commons-net,接下来的两个选项是:

JExpect - 这并不难使用,我需要什么,但它的支持程度如何?我认为它可以与JDK 6一起使用吗?

Java Telnet Application (jta26) – 这很容易使用,但我不确定它的多功能性如何。我没有看到任何在TelnetWrapper中设置超时值的地方。我也不确定自2005年上次更新该网站以来是否维护此代码。(http://www.javassh.org)

我知道这有点以意见为导向,希望SO是一个帮助我做出决定的好地方,这样我就不会开始走一条路,然后发现这不是我想要的。

谢谢。


答案 1

在这里找到了我想要的东西:http://twit88.com/blog/2007/12/22/java-writing-an-automated-telnet-client/

您需要修改提示符变量。

代码副本:

import org.apache.commons.net.telnet.TelnetClient;

import java.io.InputStream;
import java.io.PrintStream;

public class AutomatedTelnetClient {
    private TelnetClient telnet = new TelnetClient();
    private InputStream in;
    private PrintStream out;
    private String prompt = "%";

    public AutomatedTelnetClient(String server, String user, String password) {
        try {
            // Connect to the specified server
            telnet.connect(server, 23);

            // Get input and output stream references
            in = telnet.getInputStream();
            out = new PrintStream(telnet.getOutputStream());

            // Log the user on
            readUntil("login: ");
            write(user);
            readUntil("Password: ");
            write(password);

            // Advance to a prompt
            readUntil(prompt + " ");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public void su(String password) {
        try {
            write("su");
            readUntil("Password: ");
            write(password);
            prompt = "#";
            readUntil(prompt + " ");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public String readUntil(String pattern) {
        try {
            char lastChar = pattern.charAt(pattern.length() - 1);
            StringBuffer sb = new StringBuffer();
            boolean found = false;
            char ch = (char) in.read();
            while (true) {
                System.out.print(ch);
                sb.append(ch);
                if (ch == lastChar) {
                    if (sb.toString().endsWith(pattern)) {
                        return sb.toString();
                    }
                }
                ch = (char) in.read();
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

    public void write(String value) {
        try {
            out.println(value);
            out.flush();
            System.out.println(value);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public String sendCommand(String command) {
        try {
            write(command);
            return readUntil(prompt + " ");
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

    public void disconnect() {
        try {
            telnet.disconnect();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        try {
            AutomatedTelnetClient telnet = new AutomatedTelnetClient(
                    "myserver", "userId", "Password");
            System.out.println("Got Connection...");
            telnet.sendCommand("ps -ef ");
            System.out.println("run command");
            telnet.sendCommand("ls ");
            System.out.println("run command 2");
            telnet.disconnect();
            System.out.println("DONE");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

答案 2

你看过萨顿实用图书馆吗?我曾经用它打开一个telnet会话到服务器并发送一些命令,读取响应并关闭连接,它工作正常,它是LGPL


推荐