我正在使用jline
,我有一个整洁的ConsoleReader
,一切都很好。但是,如果您在提示中键入内容并且在 stdout 上有输出(来自另一个线程),则输出会拆分您正在键入的单词/命令。
如何将jline
提示保留在终端底部?
我正在使用1,但如果它足够稳定jline
,我愿意使用2。jline
我正在使用jline
,我有一个整洁的ConsoleReader
,一切都很好。但是,如果您在提示中键入内容并且在 stdout 上有输出(来自另一个线程),则输出会拆分您正在键入的单词/命令。
如何将jline
提示保留在终端底部?
我正在使用1,但如果它足够稳定jline
,我愿意使用2。jline
终于弄清楚了……这就是你要做的。首先,定义这些函数:
private ConsoleReader console = ...;
private CursorBuffer stashed;
private void stashLine() {
this.stashed = this.console.getCursorBuffer().copy();
try {
this.console.getOutput().write("\u001b[1G\u001b[K");
this.console.flush();
} catch (IOException e) {
// ignore
}
}
private void unstashLine() {
try {
this.console.resetPromptLine(this.console.getPrompt(),
this.stashed.toString(), this.stashed.cursor);
} catch (IOException e) {
// ignore
}
}
然后当你想输出新数据时,首先调用stashLine()
保存当前控制台输入,然后输出任何新的输出行,然后调用unstashLine()
恢复它。