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.
我想知道如何更改 JTextArea 中位置标记(闪烁的 I)的颜色。我想这样做的原因是因为我将有一个黑色背景和绿色文本(旧终端样式)的 GUI。我想要一个白色或绿色的位置标记。谢谢!
调用textArea.setCaretColor(Color.WHITE);方法。
textArea.setCaretColor(Color.WHITE);
使用.setCaretColor(Color.GREEN);方法。
.setCaretColor(Color.GREEN);