gpt4 book ai didi

java - JTextPane高亮多个单词

转载 作者:行者123 更新时间:2023-12-02 07:22:07 25 4
gpt4 key购买 nike

我试图在 jTextPane 中突出显示多个单词,但没有成功。到目前为止我做了这个:

Highlighter h = jTextPane1.getHighlighter();
h.removeAllHighlights();
String text = jTextPane1.getText();
String words[] = text.split(" ");
for(int i = 0;i<words.length;i++){
String temp = words[i];
if(temp.equals("word")){
try{
h.addHighlight(i, temp.length(), DefaultHighlighter.DefaultPainter);
}
catch(Exception e){
}
}
}

但这仅突出显示第一个单词。如何选择所有找到的单词?

最佳答案

使用 text.indexOf(temp) 而不是 i

h.addHighlight(i, temp.length(), DefaultHighlighter.DefaultPainter);

关于java - JTextPane高亮多个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14086165/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com