我正在尝试创建一个必须具有内容助手的 xml 编辑器。我是java新手,所以我的代码不能正常工作。
我正在尝试在键入时更改文本颜色('<' 和 '>' 之间的单词,包括 '<' 和 '>' 必须是蓝色),我的非工作代码:
textPane.addKeyListener(new KeyAdapter() {
@Override
public void keyTyped(KeyEvent arg0) {
char key = arg0.getKeyChar();
switch(key){
case '<': textPane.setForeground(Color.blue); break;
case '>': textPane.setForeground(Color.black); break;
}
}
谢谢