我知道如何使用Java通过替换前一行将终端中的输出包含在一行中。例如:
System.out.print("old line");
Thread.sleep(3000);
System.out.print("\rnew line");
但是如果我有两行输出并且我想要两者都替换
/* array must have length divisible by 2 */
public void doPrinting(String[] array) {
for(int i = 0; i < array.length / 2; i++) {
System.out.println(array[i*2]);
System.out.println(array[i*2+1]);
Thread.sleep(3000);
//I imagine some fancy ascii crypticness shall go here?
}
所以,如果我打电话给doPrinting(new String[]{"Old1", "Old2", "New1", "New2"})
,看起来应该是这样,在Mac终端中:
MyName$ java MyClass
Old1
Old2
然后暂停3秒,然后看起来像
MyName$ java MyClass
New1
New2
我该怎么做?我在Mac OS上,正在通过终端运行我的Java main方法。理想的答案是添加代码来修改上面的doPrinting
方法。
更新:从下面回答一个问题后,我尝试了这个:
String ANSI_CSI = "\\x1b[";
String[] array = {"old1","old2","new1","new2"};
System.out.print("\n\n");
for(int i = 0; i < array.length / 2; i++) {
System.out.print(ANSI_CSI + "2A"); // Up 2
System.out.print(ANSI_CSI + "K"); // Clear
System.out.println(array[i*2]);
System.out.print(ANSI_CSI + "K"); // Clear
System.out.println(array[i*2+1]);
Thread.sleep(3000);
}
但是这只是在终端
中给我输出MyName$ MyClass
\x1b[2A\x1b[Kold1
\x1b[Kold2
\x1b[2A\x1b[Knew1
\x1b[Knew2
答案 0 :(得分:3)
您将要使用ANSI Escape Codes。
在这里,您可能会对“向上移动光标”(CSI-A
)和“擦除行”(CSI-K
)感兴趣。
// outside code
public static final String ANSI_CSI = "\x1b[";
// inside code
System.out.println("First line of text");
System.out.println("[ 5/365]");
System.out.print(ANSI_CSI + "2A"); // up 2 lines
System.out.println("Different first line of text");
System.out.println("[ 11/365)");
System.out.print(ANSI_CSI + "A"); // up line
System.out.print(ANSI_CSI + "2K"); // erase all of line
System.out.print(ANSI_CSI + "A"); // up line
System.out.print(ANSI_CSI + "K"); // erase after cursor
System.out.println("Line one");
System.out.println("[240/365]");
如果您想在循环中执行此操作(为简洁起见,省略了System.out
):
// Init to safe state
print("\n\n");
for (loop conditions here) {
print(ANSI_CSI + "2A"); // Up 2
print(ANSI_CSI + "K"); // Clear
println(text_a); // Print + newline
print(ANSI_CSI + "K"); // Clear
println(text_b); // Print + newline
Thread.sleep(3000); // Wait
}
请注意,您需要使用支持这些功能的终端。查看Wikipedia文章以获取更多信息。如果它表示某个代码在“ANSI.SYS”下具有不同的行为,那么这适用于默认的Windows命令提示符。
我对Mac没有任何经验,因此您的体验可能因不同终端而异。
大多数备用和UNIX终端(gnome-terminal,PuTTY)更全面地支持这些代码(请参阅有关xterm
完整RGB支持的说明)。