我正在寻找一种在JTextPane中查找字符串的快速方法,并在那里更改样式,以便突出显示。我目前所拥有的是这样的(tpOutput是有问题的JTextPane,str搜索要搜索的字符串.. duh):
int index = tpOutput.getText().indexOf(strSearch);
StyledDocument doc = tpOutput.getStyledDocument();
doc.setCharacterAttributes(i, strSearch.length(), doc.getStyle("exampleStyle") , false);
然而,如果它有效的那么美丽,它在换行符上是错误的,所以如果我在
中搜索文本“foobar”foobarTTT
abcd123
abcd123
它会在第一行正确突出显示“foobar”。但是,在
abcd123
abcd123
foobarTTT
它会突出显示“obarTT”(以及以下2个空格,如果存在的话)
我可能做错了,尝试使用文本轻松获得偏移量。有人知道这样做的正确方法吗?
答案 0 :(得分:2)
IndexOutOfBounds
可能来自doc.getStyle("exampleStyle")
,使用MutableAttributeSet为我工作,
您可以使用此SSCCE
向IndexOutOfBounds
演示您的问题
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.text.*;
public class TextPaneAttributes extends JFrame {
private static final long serialVersionUID = 1L;
public TextPaneAttributes() {
final JTextPane textPane = new JTextPane();
StyledDocument doc = textPane.getStyledDocument();
final MutableAttributeSet standard = new SimpleAttributeSet();
StyleConstants.setAlignment(standard, StyleConstants.ALIGN_CENTER);
doc.setParagraphAttributes(0, 0, standard, true);
MutableAttributeSet keyWord = new SimpleAttributeSet();
StyleConstants.setForeground(keyWord, Color.red);
StyleConstants.setItalic(keyWord, true);
textPane.setText("one\ntwo\nthree\nfour\nfive\nsix\nseven\neight\n");
doc.setCharacterAttributes(0, 3, keyWord, false);
doc.setCharacterAttributes(19, 4, keyWord, false);
try {
doc.insertString(0, "Start of text\n", null);
doc.insertString(doc.getLength(), "End of text\n", keyWord);
} catch (Exception e) {
}
final MutableAttributeSet selWord = new SimpleAttributeSet();
StyleConstants.setForeground(selWord, Color.blue);
StyleConstants.setItalic(selWord, true);
JScrollPane scrollPane = new JScrollPane(textPane);
scrollPane.setPreferredSize(new Dimension(200, 200));
add(scrollPane);
JToggleButton toggleButton = new JToggleButton("where is 'four'");
toggleButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
//AbstractButton abstractButton = (AbstractButton) actionEvent.getSource();
//boolean selected = abstractButton.getModel().isSelected();
int index = textPane.getText().indexOf("four");
StyledDocument doc = textPane.getStyledDocument();
doc.setCharacterAttributes(index, 4, selWord, false);
}
});
add(toggleButton, BorderLayout.SOUTH);
}
public static void main(String[] args) {
Runnable doRun = new Runnable() {
@Override
public void run() {
TextPaneAttributes frame = new TextPaneAttributes();
frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
frame.pack();
frame.setVisible(true);
}
};
SwingUtilities.invokeLater(doRun);
}
}
答案 1 :(得分:2)
您还可以使用How to Use Text Fields: Another Example: TextFieldDemo中讨论的Highlighter
。
答案 2 :(得分:2)
我的猜测:也许在JTextPane和StyledDocument中使用的换行符有区别,假设JTextPane使用\n
而StyledDocument使用\r\n
答案 3 :(得分:1)
我观察到同样的事情,我用这段代码进行调整:
private int countCarrierReturns(StringBuilder sb, int end) {
final String cr = "\r";
int lines = 0;
int init = sb.indexOf(cr, 0);
if (init == -1) {
return 0;
}
while (init < end) {
lines++;
init = sb.indexOf(cr, init + 1);
}
return lines;
}
'int end
'是我应用样式的第一个字符。