在 java eclipse 控制台中更改颜色

发布于 2024-11-03 01:39:28 字数 263 浏览 0 评论 0原文

有没有办法改变eclipse控制台中的文本颜色?
我不是在谈论当我进入选项并将颜色从黑色更改为红色时。
我的意思是,当我启动程序并执行代码时,它会在某个时刻改变颜色。
例如:

//code  
if (a == 2)  
//change text color to red and continue typing in red color

我不是在谈论 guis jframes 等。我在谈论 Eclipse 控制台。

Is there any way to change text color in eclipse console?
I am not talking about when I go to options and change color from black to for example red.
I mean like when I launch my program and it executes code and at some point it changes color.
For example:

//code  
if (a == 2)  
//change text color to red and continue typing in red color

I am not talking about guis jframes etc. I am talking about Eclipse console.

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

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

发布评论

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

评论(1

悸初 2024-11-10 01:39:28

可能通过使用不同的 org.eclipse.ui.console.MessageConsoleStream,考虑到:

它用于将消息写入消息控制台。
消息控制台可能有多个连接到它的流。
每个流可以以不同的颜色显示

请参阅这个线程

IOConsoleOutputStream 有一个 setColor(Color newColor),因此我可以为每种类型 MessageConsole.getInputStream().setColor(Color newColor)消息。

Probably by using a different org.eclipse.ui.console.MessageConsoleStream, considering that:

It is ssed to write messages to a message console.
A message console may have more than one stream connected to it.
Each stream may be displayed in a different color

See this thread:

IOConsoleOutputStream has a setColor(Color newColor), so I can MessageConsole.getInputStream().setColor(Color newColor) for each type of message.

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