我希望提示符每次显示在页面底部。

我有一个GIF:The prompt not displaying properly

该代码是用于读取行的代码:

@Override
public void run()
{
    while (((ElytraServer) ElytraAPI.getServer()).isRunning())
    {
        String cmd;
        ((ElytraServer) ElytraAPI.getServer()).getReader().getTerminal().writer().flush();
        cmd = ((ElytraServer) ElytraAPI.getServer()).getReader().readLine("> ");
        if (!cmd.isEmpty())
        {
            String[] aCMD = cmd.split(" ");
            String[] arguments = Arrays.copyOfRange(aCMD, 1, aCMD.length);
            ElytraAPI.getCommandRegistry().dispatch(ElytraAPI.getConsole(), aCMD[0], arguments);
        }
    }
}


它在线程中。

还有另一个线程:
使用JLine 2,代码将提示保留在底部(但这很容易出错!)

public void run()
{
    while (((ElytraServer) ElytraAPI.getServer()).isRunning())
    {
        try
        {
            if (useJline)
            {
                /*
                JLine 2 / Old:
                reader.print(Ansi.ansi().eraseLine(Erase.ALL).toString() + '\n');
                reader.flush();
                 */
                reader.getBuffer().down();
                reader.getTerminal().flush();
                output.write("".getBytes());
                output.flush();

                /* // For JLine2
                try
                {
                    reader.drawLine();
                }
                catch (Throwable throwable)
                {
                    reader.getCursorBuffer().clear();
                }*/

                reader.getTerminal().flush();
            }
            else
            {
                output.write("".getBytes());
                output.flush();
            }
        }
        catch (IOException ioexception)
        {
            Logger.getLogger(TerminalConsoleWriterThread.class.getName()).log(Level.SEVERE, null, ioexception);
        }
    }
}


对于完整的来源:
Full source of the program

最佳答案

当前代码的I posted a workaround(只要用户不使用多行输入,它就起作用)。

reader.getTerminal().puts(Capability.carriage_return);
reader.getTerminal().writer().println("World!");
reader.callWidget(LineReader.REDRAW_LINE);
reader.callWidget(LineReader.REDISPLAY);
reader.getTerminal().writer().flush();


下一个jline版本(3.2)将包含一个更好的修复程序。参见:https://github.com/jline/jline3/issues/75

09-26 04:17