Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在控制台上以突出显示的颜色打印文本。
我找到了这个链接,但这谈到了用彩色打印文本而不是用另一种颜色突出显示它。
例子:
要打开黄色背景(例如),您需要转义序列
java.lang.String("\033[43m");
将此与黑色前景结合起来以获得您想要的。
我从这个 Scala 文档中得到了转义序列。尽管它是 Scala 文档,但它在 Java 中是相关且适用的。Jansi图书馆应该处理这个问题。请参阅课程中的“背景”参考Ansi。
Ansi
I seem to be having some problems witn my quicksort method. I am trying to sort an ArrayList of objects using my quicksort method. I am using the Apache POI library to extract data from an excel file and I am adding thi