使用 jsch 自动向下滚动 shell

Auto Scroll Down a shell usin jsch

我在 Java jsch 中遇到问题。我打开了一个 Shell 频道,并且我有一个要执行的命令列表,并从 shell.

中读取

但是在该命令列表中,有一个命令需要在 shell 中向下滚动才能显示到末尾。

我正在努力为该命令实现这个自动滚动器。

在我的代码中我做了什么:

    ChannelShell channelShell = (ChannelShell) session.openChannel("shell");
    OutputStream inputstream_for_the_channel = channelShell.getOutputStream();
    InputStream outputstream_from_the_channel = channelShell.getInputStream();

    BufferedReader reader = new BufferedReader(new InputStreamReader(outputstream_from_the_channel));
    PrintStream commander = new PrintStream(inputstream_for_the_channel, true);

    channelShell.connect();

    if (!commands.get(0).equals("show system information | match \"System Name\"")) {
        commands.add(0, "show system information | match \"System Name\"");
    }

    String readString = "";
    String line;
    int index = 0;

    for (String cmd : commands) {
        System.out.println(cmd);

        commander.println(cmd);
        try {
            Thread.sleep(commandsSleep);
        } catch (Exception ee) {
        }

        while ((line = reader.readLine()) != null)
        {
            if (cmd.equals("admin display-config")) {
                commander.println("");
            }

            GuiApp.textAreaLog.append("\n"+ ++index + " : " + line);
            System.out.println(index + " : " + line);
            readString += (line+"\n");
        }

    }


    if (routerType.equals("nokia")) {
        commander.println("logout");
        System.out.println("logout");
        try {
            Thread.sleep(commandsSleep);
        } catch (Exception ee) {
        }
    } else if (routerType.equals("linux")){
        commander.println("exit");
    }

    commander.close();
    channelShell.disconnect();

    try {
        Thread.sleep(commandsSleep);
    } catch (Exception ee) {
    }


    return readString;

在部分:

    while ((line = reader.readLine()) != null)
    {
        if (cmd.equals("admin display-config")) {
            commander.println("");
        }

        GuiApp.textAreaLog.append("\n"+ ++index + " : " + line);
        System.out.println(index + " : " + line);
        readString += (line+"\n");
    }

是我尝试实现一个 While 循环以读取 reader 直到它为空,并向指挥官添加一个带有 "" 的 printl 以尝试进一步向下滚动这个有问题的命令的地方。

我设法做的是向读取缓冲区插入一个时间限制器。

for (String cmd : commands) {
    GuiApp.textAreaLog.append("\n"+"Running Command : " + cmd);
    commander.println(cmd);
    System.out.println(cmd);
    if (cmd.equals("admin display-config")) {
        commandDelay = commandsSleep*10;
    }else{
        commandDelay = commandsSleep;
    }
    line = reader.readLine();
    while (line!=null)
    {

        System.out.println(++index + " : " + line);
        readString += (line+"\n");
        try {
            line = timeLimiter.callWithTimeout(reader::readLine, commandsSleep, TimeUnit.MILLISECONDS, true);
        } catch (Exception e) {
            e.printStackTrace();
            break;
        }
    }
    try {
        Thread.sleep(commandDelay);
    } catch (Exception e) {
        //e.printStackTrace();
    }
    GuiApp.textAreaLog.append("\n"+"Comando executado com sucesso");
}