清除eclipse控制台java

发布于 2024-12-05 19:26:11 字数 69 浏览 0 评论 0原文

我正在使用 Eclipse Helios,由于某些原因我必须使用控制台。我正在寻找一个可以在程序运行时随时清除控制台的命令。

I'm using Eclipse Helios and for some reasons i have to work with the console. I'm searching for a command which can clear my console at any time, while the program is running.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

痴骨ら 2024-12-12 19:26:11

Eclipse 有一个清晰的控制台按钮;这将是真正清除它的唯一方法。你的java应用程序不知道它的存在; System.out 仅显示在那里,如果需要,您可以为 System.in 写入数据。 (有点像命令外壳)

Eclipse has a clear button for the console; that will be the only way to actually clear it. Your java app doesn't know about it's existence; the System.out is just shown there and if needed you can write data for the System.in. (Somewhat like a command shell)

独行侠 2024-12-12 19:26:11

你可以尝试打印一堆换行符。借用别人的一些代码:
System.out.println(new String(new char[70]).replace("\0", "\r\n"));

这会比循环快很多,因为您只需使用 System.out.println(); 一次

you could try printing a bunch of newlines. Taking some code from someone else:
System.out.println(new String(new char[70]).replace("\0", "\r\n"));

This will be a lot faster then a loop, becuase you only need to use System.out.println(); once

他是夢罘是命 2024-12-12 19:26:11
public static void clear() {
    for (int i = 0; i<30; i++){
       System.out.print('\n');
    }
}

我经常用这个

public static void clear() {
    for (int i = 0; i<30; i++){
       System.out.print('\n');
    }
}

I use this a lot

韶华倾负 2024-12-12 19:26:11

您可以使用控制字符反斜杠 (\b) 和回车符 (\r)。控制台视图可以解释这些控件,但默认情况下它被禁用。要启用它,您可以进入Windows>首选项运行/调试>控制台并选择解释 ASCII 控制字符

在此处输入图像描述

完成这些配置后,您可以使用控制字符(例如:\t - 制表符)管理控制台

\b - 退格键(文本中后退一步或删除单个字符)。

\n - 新行。

\r - 回车。 ()

\f - 换页。

输入图片描述在这里

更多信息,可以查看:https://www.eclipse.org/eclipse/news/4.14/platform.php

You can use control characters backslash (\b) and carriage return (\r). The Console view can interpret these controls, but it come disabled by default. For enable it you can go on Windows>Preferences and Run/Debug > Console and select Interpret ASCII control characteres

enter image description here

After these configurations, you can manage your console with control characters like:

\t - tab.

\b - backspace (a step backward in the text or deletion of a single character).

\n - new line.

\r - carriage return. ()

\f - form feed.

enter image description here

For more information, you can see: https://www.eclipse.org/eclipse/news/4.14/platform.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文