是否有一行代码可以删除最后打印的一行?这样:
system.out.println("random text");
system.out.println("hello");
[some function]("hello");
将打印:随机文本
答案 0 :(得分:1)
如果您已经打印了行,则Java无法删除它们。 使用'System.out.print()',您可以像这样尝试:
System.out.print("\r" + text);
\ r将删除当前行上的文本。 在诸如eclipse的IDE中,它将以新行打印。在命令提示符下尝试。